Class VerbalizedModelComponent<T extends VerbalizedModelComponent>

All Implemented Interfaces:
Serializable, Cloneable, Map<String,Object>
Direct Known Subclasses:
FactType, UnnamedVerbalizedModelComponent

public class VerbalizedModelComponent<T extends VerbalizedModelComponent> extends ModelComponent<T>
A VerbalizedModelComponent is a ModelComponent with a Verbal Qualifier Pattern
Since:
12.1.2
Author:
Ganesh RK
See Also:
  • Field Details

  • Method Details

    • getStoredPropertyNames

      public String[] getStoredPropertyNames()
      Overrides:
      getStoredPropertyNames in class ModelComponent<T extends VerbalizedModelComponent>
      Returns:
      Array of property names which are persisted in the order in which they appear in the schema.
    • getPropertyNames

      public String[] getPropertyNames()
      Overrides:
      getPropertyNames in class ModelComponent<T extends VerbalizedModelComponent>
      Returns:
      Array of property names available.
    • getDefaultQualifierPattern

      public String getDefaultQualifierPattern()
      Get the default Qualifier Pattern
      Returns:
      default Qualifier Pattern
    • getQualifierPattern

      public String getQualifierPattern()
      Get the Verbal Qualifier pattern
      Returns:
      qualifier pattern
    • setQualifierPattern

      public void setQualifierPattern(String qualifierPattern)
      Set the Verbal Qualifier pattern
      Parameters:
      qualifierPattern - qualifier pattern
    • getTranslatedQualifierPattern

      public String getTranslatedQualifierPattern()
      Get the translated Verbal Qualifier pattern
      Returns:
      Qualifier pattern, or "" if no translation available
    • setTranslatedQualifierPattern

      public void setTranslatedQualifierPattern(String qualifierPattern)
      Set the translated Verbal Qualifier pattern
      Parameters:
      qualifierPattern - qualifier pattern
    • getQualifierPattern

      public String getQualifierPattern(boolean translate)
      Get the (optionally translated) Verbal Qualifier pattern
      Parameters:
      translate - whether to get the translated qualifier pattern
      Returns:
      translated qualifier pattern, or qualifier pattern if translation does not exist
    • setQualifierPattern

      public void setQualifierPattern(String qualifierPattern, boolean translate)
      Set the Qualifier pattern
      Parameters:
      qualifierPattern - New (translated) qualifier pattern.
      translate - whether to also set the translated value
    • getQualifierPatternProperty

      public UserTranslatedProperty getQualifierPatternProperty()
      Get the property of the Verbal Qualifier pattern
      Returns:
      Qualifier Pattern property
    • isUnsavedTranslatedQualifierPattern

      public boolean isUnsavedTranslatedQualifierPattern()
      Is the translated Verbal Qualifier Pattern unsaved?
      Returns:
      true or false
    • put

      public Object put(String key, Object value)
      Description copied from class: DictionaryComponent
      Generic property setter. Throws runtime exceptions for incorrect arguments. Please see the specific bean class for a list of properties, their types, and permissible values.

      A put() with either null key or null value throws a NullPointerException.

      A put() with a key that is not a String throws a ClassCastException

      A put() of a value that is not of the correct type for the key throws a ClassCastException.

      Bean properties which have no set() method are read only, and cannot be modified using the put(). Attempting to do so throws a runtime IllegalArgumentException. PROP_ID, and PROP_*_SELECTED are always read only.

      Specified by:
      put in interface Map<String,Object>
      Overrides:
      put in class DictionaryComponent<T extends VerbalizedModelComponent>
      Parameters:
      key - the key of the property to set
      value - the value of the named property to set
      Returns:
      the previous value of the property
    • validate

      public void validate(List<SDKException> errors, List<SDKWarning> warnings)
      Description copied from class: DictionaryComponent
      Validate and append errors and warnings.
      Overrides:
      validate in class DictionaryComponent<T extends VerbalizedModelComponent>
      Parameters:
      errors - a List of error exceptions to append to.
      warnings - a List of warning exceptions to append to.
      See Also: