Class Property

All Implemented Interfaces:
Serializable, Cloneable, Map<String,Object>, ExpressionContext

public class Property extends ConstrainableComponent<Property> implements ExpressionContext
Represent either a Java Bean Property or a RL Class slot
See Also:
  • Method Details

    • isWritable

      public boolean isWritable()
      Whether it is a writable property. A writable property has a corresponding setter method.
      Returns:
      true to indicate the property is writable
    • setWritable

      public void setWritable(boolean isWritable)
    • isReadable

      public boolean isReadable()
      Whether it is a readable property. A readable property has a corresponding getter method.
      Returns:
      true to indicate the property is readable
    • setReadable

      public void setReadable(boolean isReadable)
    • getExpressionProperty

      public DictionaryProperty<Expression> getExpressionProperty()
      Get Expression Property.
      Returns:
      Expression DictionaryProperty
    • getExpression

      public Expression getExpression()
      Get default initialization expression of the property
      Returns:
      Expression
    • setLocal

      public void setLocal(boolean local)
      //whether the property is local to the class, or from ancester class boolean isLocal() { return (Boolean)get(PROP_LOCAL); } /**
    • isPrimaryKey

      public boolean isPrimaryKey()
    • setPrimaryKey

      public void setPrimaryKey(boolean primary)
    • getPropertyNames

      public String[] getPropertyNames()
      Overrides:
      getPropertyNames in class ConstrainableComponent<Property>
      Returns:
      Array of property names available.
    • getStoredPropertyNames

      public String[] getStoredPropertyNames()
      Overrides:
      getStoredPropertyNames in class ConstrainableComponent<Property>
      Returns:
      Array of property names which are persisted in the order in which they appear in the schema.
    • getMatchTypeIDs

      public DOID[] getMatchTypeIDs(Expression e)
      Description copied from interface: ExpressionContext
      A child calls this method in the parent to see if the data type is appropriate for the context of the parent. Example, in the expression x == y, the Expression y asks its parent the type of x and the operator used between the two
      Specified by:
      getMatchTypeIDs in interface ExpressionContext
    • getMatchOp

      public String getMatchOp(Expression e)
      Description copied from interface: ExpressionContext
      A child calls this method in the parent to see if the data type is appropriate for the context of the parent. Example, in the expression x == y, the Expression y asks its parent the type of x and the operator used between the two
      Specified by:
      getMatchOp in interface ExpressionContext
    • isValueRequired

      public boolean isValueRequired(Expression e)
      Description copied from interface: ExpressionContext
      A child calls this method in the parent to see if it must have a value != ""
      Specified by:
      isValueRequired in interface ExpressionContext
    • 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 ConstrainableComponent<Property>
      Parameters:
      errors - a List of error exceptions to append to.
      warnings - a List of warning exceptions to append to.
      See Also:
    • getGlobalAlias

      public String getGlobalAlias()
      Get the Global Alias
      Returns:
      Global Alias
    • setGlobalAlias

      public void setGlobalAlias(String globalAlias)
      Set the Global Alias
      Parameters:
      globalAlias - Global Alias
    • getTranslatedGlobalAlias

      public String getTranslatedGlobalAlias()
      Get the translated Global Alias
      Returns:
      Global Alias, or "" if no translation available
    • setTranslatedGlobalAlias

      public void setTranslatedGlobalAlias(String globalAlias)
      Set the translated Global Alias
      Parameters:
      globalAlias - Global Alias
    • getGlobalAlias

      public String getGlobalAlias(boolean translate)
      Get the (optionally translated) Global Alias
      Parameters:
      translate - whether to get the translated Global Alias
      Returns:
      translated Global Alias, or Global Alias if translation does not exist
    • setGlobalAlias

      public void setGlobalAlias(String globalAlias, boolean translate)
      Set the Global Alias
      Parameters:
      globalAlias - New (translated) Global Alias
      translate - whether to also set the translated value
    • getGlobalAliasProperty

      public UserTranslatedProperty getGlobalAliasProperty()
      Get the property of the Global Alias
      Returns:
      Global Alias property
    • isUnsavedTranslatedGlobalAlias

      public boolean isUnsavedTranslatedGlobalAlias()
      Is the translated Global Alias unsaved?
      Returns:
      true or false
    • put

      public Object put(String key, Object value)
      Description copied from class: ConstrainableComponent
      Override hashtable put method. For property "bucketset" we store both alias and ID and sync them
      Specified by:
      put in interface Map<String,Object>
      Overrides:
      put in class ConstrainableComponent<Property>
      Parameters:
      key - a String containing the property name to be saved.
      value - a String corresponding to the key to be saved
      Returns:
      the previous value of the property
    • getPropertyTypeID

      public DOID getPropertyTypeID()
      Returns:
      If the property is a Collection or Array, returns the Content Type ID. Otherwise returns the Type ID.