All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.watson.assistant.v2.model.RuntimeEntityRole Maven / Gradle / Ivy

There is a newer version: 13.0.0
Show newest version
/*
 * (C) Copyright IBM Corp. 2020.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 */
package com.ibm.watson.assistant.v2.model;

import com.ibm.cloud.sdk.core.service.model.GenericModel;

/**
 * An object describing the role played by a system entity that is specifies the beginning or end of
 * a range recognized in the user input. This property is included only if the new system entities
 * are enabled for the skill.
 */
public class RuntimeEntityRole extends GenericModel {

  /** The relationship of the entity to the range. */
  public interface Type {
    /** date_from. */
    String DATE_FROM = "date_from";
    /** date_to. */
    String DATE_TO = "date_to";
    /** number_from. */
    String NUMBER_FROM = "number_from";
    /** number_to. */
    String NUMBER_TO = "number_to";
    /** time_from. */
    String TIME_FROM = "time_from";
    /** time_to. */
    String TIME_TO = "time_to";
  }

  protected String type;

  /** Builder. */
  public static class Builder {
    private String type;

    private Builder(RuntimeEntityRole runtimeEntityRole) {
      this.type = runtimeEntityRole.type;
    }

    /** Instantiates a new builder. */
    public Builder() {}

    /**
     * Builds a RuntimeEntityRole.
     *
     * @return the new RuntimeEntityRole instance
     */
    public RuntimeEntityRole build() {
      return new RuntimeEntityRole(this);
    }

    /**
     * Set the type.
     *
     * @param type the type
     * @return the RuntimeEntityRole builder
     */
    public Builder type(String type) {
      this.type = type;
      return this;
    }
  }

  protected RuntimeEntityRole(Builder builder) {
    type = builder.type;
  }

  /**
   * New builder.
   *
   * @return a RuntimeEntityRole builder
   */
  public Builder newBuilder() {
    return new Builder(this);
  }

  /**
   * Gets the type.
   *
   * 

The relationship of the entity to the range. * * @return the type */ public String type() { return type; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy