Class ConstrainableComponent<T extends ConstrainableComponent>

All Implemented Interfaces:
Serializable, Cloneable, Map<String,Object>
Direct Known Subclasses:
Field, FormalParameter, Function, Property, Variable

public abstract class ConstrainableComponent<T extends ConstrainableComponent> extends TypedComponent<T>
A ConstrainableComponent is a TypedComponent with an attached BucketSet
See Also:
  • Method Details

    • getBucketSetProperty

      public AliasRefProperty getBucketSetProperty()
      Get BucketSet Property.
      Returns:
      AliasRefProperty
    • getBucketSet

      public BucketSet getBucketSet()
      Returns:
      BucketSet or null if no BucketSet has been set
    • getBucketSetAlias

      public String getBucketSetAlias()
      Get BucketSet alias associated with Property values.
      Returns:
      BucketSet or null if no BucketSet has been set
    • setBucketSet

      public void setBucketSet(BucketSet bucketSet)
      Set BucketSet associated with Property values. Null bucketSet clears any association.
      Parameters:
      bucketSet -
    • setBucketSetByAlias

      public void setBucketSetByAlias(String bucketSetAlias)
      Set BucketSet (by alias) associated with Property values.
      Parameters:
      bucketSetAlias -
    • getBucketSetOptions

      public String[] getBucketSetOptions()
      get list of allowable bucket set aliases
      Returns:
      String[] of bucket set aliases
    • get

      public Object get(Object key)
      Override hashtable get method. For property "Type" we get the alias using the stored ID.
      Specified by:
      get in interface Map<String,Object>
      Overrides:
      get in class TypedComponent<T extends ConstrainableComponent>
      Parameters:
      key - a String containing the property name to be fetched.
      Returns:
      the value corresponding to the key
    • put

      public Object put(String key, Object value)
      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 TypedComponent<T extends ConstrainableComponent>
      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
    • 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 TypedComponent<T extends ConstrainableComponent>
      Parameters:
      errors - a List of error exceptions to append to.
      warnings - a List of warning exceptions to append to.
      See Also:
    • getPropertyNames

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

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