Class Field

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

public class Field extends ConstrainableComponent<Field>
Represent a static public Java Field
See Also:
  • Method Details

    • isFinal

      public boolean isFinal()
      Whether it is a final field
      Returns:
      true to indicate the field is final
    • setFinal

      public void setFinal(boolean isFinal)
    • isEnum

      public boolean isEnum()
      Whether it is an enum field
      Returns:
      true to indicate the field is an enum
    • setEnum

      public void setEnum(boolean isEnum)
    • isStatic

      public boolean isStatic()
      Whether it is a static field
      Returns:
      true to indicate the field is static
    • setStatic

      public void setStatic(boolean isStatic)
    • getModifiers

      public Modifiers getModifiers()
    • setModifiers

      public void setModifiers(Modifiers modifiers)
    • getPropertyNames

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

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

      public String getLiteralValue(DictionaryObject context)