Class AbstractChoiceImpl

java.lang.Object
oracle.rules.sdk2.dictionary.AbstractChoiceImpl
All Implemented Interfaces:
Serializable, Choice
Direct Known Subclasses:
AbstractVerbalChoice, ChoiceImpl

public abstract class AbstractChoiceImpl extends Object implements Choice
See Also:
  • Method Details

    • isQualified

      public boolean isQualified()
      Is the name of this choice qualified by the name of this choice's parent?
      Specified by:
      isQualified in interface Choice
      Returns:
    • getKind

      public Choice.Kind getKind()
      Get the kind of this choice.
      Specified by:
      getKind in interface Choice
      Returns:
      Choice.Kind
    • getName

      public String getName()
      Get the name of the choice
      Specified by:
      getName in interface Choice
      Returns:
      name
    • getName

      public String getName(boolean translate)
      Description copied from interface: Choice
      Get the name of the choice, typically the last component of the value, relative to the parent
      Specified by:
      getName in interface Choice
      Parameters:
      translate - flag to translate the name
      Returns:
      name
    • getValue

      public String getValue()
      Get the value of the choice, suitable for input to SettableProperty.setValue(T)
      Specified by:
      getValue in interface Choice
      Returns:
      value
    • getValue

      public String getValue(boolean translate)
      Description copied from interface: Choice
      Get the value of the choice
      Specified by:
      getValue in interface Choice
      Parameters:
      translate - flag to translate the value
      Returns:
      value
    • getVerbalValue

      public String getVerbalValue()
      Get the 'Verbal' value of the Choice.
      Specified by:
      getVerbalValue in interface Choice
      Returns:
      'Verbal' value of this Choice if any, "" Otherwise
    • getVerbalValue

      public String getVerbalValue(boolean translate)
      Get the (optionally translated) 'Verbal' value of the choice
      Specified by:
      getVerbalValue in interface Choice
      Parameters:
      translate - flag to optionally translate the value
      Returns:
      'Verbal' value of this Choice if any, "" Otherwise
    • getTranslatedValue

      @Deprecated public String getTranslatedValue(RuleDictionary dic)
      Deprecated.
      use #getValue(true)
      Get the translated value of the choice, suitable for input to TranslatedProperty.setTranslatedValue()
      Specified by:
      getTranslatedValue in interface Choice
      Returns:
      translated value
    • getTranslatedName

      @Deprecated public String getTranslatedName(RuleDictionary dic)
      Deprecated.
      use #getName(true)
      Get the translated name of the choice
      Specified by:
      getTranslatedName in interface Choice
      Returns:
      translated name
    • getTranslatedName

      public String getTranslatedName()
      Get the translated name of the choice, or null of none
      Returns:
      translated name, or ""
    • getTranslatedValue

      public String getTranslatedValue()
      Description copied from interface: Choice
      Get the translated value of the choice, or null if none.
      Specified by:
      getTranslatedValue in interface Choice
      Returns:
      translated value, or null
    • getLiteralValue

      public String getLiteralValue()
      Get the literal name associated with this choice, or null if none.
      Specified by:
      getLiteralValue in interface Choice
    • getChildren

      public List<Choice> getChildren()
      Get children as immutable list.
      Specified by:
      getChildren in interface Choice
      Returns:
      immutable list
    • getParent

      public Choice getParent()
      Description copied from interface: Choice
      Get parent choice
      Specified by:
      getParent in interface Choice
      Returns:
      parent in choice tree
    • isGlobal

      public boolean isGlobal()
      is this choice or an ancestor static, a global variable, or a nullary function?
      Specified by:
      isGlobal in interface Choice
    • isStatic

      public boolean isStatic()
      is the choice a Java static member?
      Specified by:
      isStatic in interface Choice
    • isAssignable

      public boolean isAssignable()
      can the choice be used as the target of an assignment?
      Specified by:
      isAssignable in interface Choice
    • isAssignablePrefix

      public boolean isAssignablePrefix()
      can some ancestor of the choice be used as the target of an assignment?
      Specified by:
      isAssignablePrefix in interface Choice
    • isTestable

      public boolean isTestable()
      Can the choice be used in a rule test?
      Specified by:
      isTestable in interface Choice
    • isExpanded

      public boolean isExpanded()
      Should the choice be expanded to display first order children?
      Specified by:
      isExpanded in interface Choice
    • getDefinition

      public DictionaryComponent getDefinition()
      Description copied from interface: Choice
      Get the dictionary component that defines this choice. E.g. if the choice's value is "emp.salary", return the salary property of the emp fact type. This method can be used to implement a "goto definition" capability in the UI.
      Specified by:
      getDefinition in interface Choice
      Returns:
      DictionaryComponent
    • getTypeID

      public DOID getTypeID()
      Description copied from interface: Choice
      get the Dictionary Object ID (DOID) of the type of this Choice
      Specified by:
      getTypeID in interface Choice
      Returns:
      DOID or DOID.nil if no type exists for this choice.
    • getType

      public String getType()
      Get the data type of the choice
      Specified by:
      getType in interface Choice
      Returns:
      alias of data type
    • getType

      public String getType(boolean translate)
      Description copied from interface: Choice
      Get the data type of the choice
      Specified by:
      getType in interface Choice
      Parameters:
      translate - flag to translate the data type
      Returns:
      alias of data type, or "" if no type
    • getListContentTypeID

      public DOID getListContentTypeID()
      Description copied from interface: Choice
      If the type of choice is List, get the Dictionary Object ID (DOID) of the type of the content of the List
      Specified by:
      getListContentTypeID in interface Choice
      Returns:
      DOID or DOID.nil if the type of this choice is not List, or the content type of the list is unknown.
    • getListContentType

      public String getListContentType()
      Description copied from interface: Choice
      If the type of choice is List, get the data type of the content of the List
      Specified by:
      getListContentType in interface Choice
      Returns:
      alias of data type, or "" if no type
    • getListContentType

      public String getListContentType(boolean translate)
      Description copied from interface: Choice
      If the type of choice is List, get the data type of the content of the List
      Specified by:
      getListContentType in interface Choice
      Parameters:
      translate - flag to translate the data type
      Returns:
      alias of data type, or "" if no type
    • getID

      public DOID getID()
      get the Dictionary Object ID (DOID) associated with this Choice
      Specified by:
      getID in interface Choice
      Returns:
      DOID or DOID.nil if no DOID exists for this choice.
    • isSelectable

      public boolean isSelectable()
      is the Choice selectable? If not, then you must choose a child Choice.
      Specified by:
      isSelectable in interface Choice
      Returns:
      flag
    • getAltValue

      public String getAltValue()
      Get alternate value of choice (not necessarily a valid value). E.g. the RL name of a class.
      Specified by:
      getAltValue in interface Choice
      Returns:
      String
    • getDescription

      public String getDescription()
      Description copied from interface: Choice
      Get a description of the choice
      Specified by:
      getDescription in interface Choice
      Returns:
      String
    • getDescription

      public String getDescription(boolean translate)
      Description copied from interface: Choice
      Get a description of the choice
      Specified by:
      getDescription in interface Choice
      Parameters:
      translate - flag to translate the description
      Returns:
      String
    • setSelectable

      public void setSelectable(boolean b)
    • setName

      public void setName(String name, String translatedName)
    • setDefinition

      public void setDefinition(DictionaryComponent dc)
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • getDictionary

      public RuleDictionary getDictionary()