Class ValuesProperty

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
DimensionNode.ValuesProperty, DSLParameter.RelatedTypeValuesProperty

public abstract class ValuesProperty extends SettableProperty<String[]>
A Values property is a translated settable String array-valued property.
Since:
12.1.2
Author:
ganradha
See Also:
  • Constructor Details

  • Method Details

    • setValue

      public void setValue(String... value)
      Description copied from class: SettableProperty
      Set the value of the property
      Overrides:
      setValue in class SettableProperty<String[]>
    • getValue

      public String[] getValue(boolean translate)
      Get property values, optionally translated
      Returns:
      String[] value
    • getTranslatedValue

      public String[] getTranslatedValue()
      Get translated property values.
      Returns:
      translated values
    • setTranslatedValue

      public abstract void setTranslatedValue(String... translatedValue)
      Set Translated property values The following code fragment is always a no-op: setTranslatedValue(getValue(true))
    • getOptions

      public String[] getOptions()
      Get the valid untranslated values for the property
      Returns:
      String[] of valid values
    • getTranslatedOptions

      public String[] getTranslatedOptions()
      Get the valid translated values for the property
      Returns:
      String[] of valid values
    • getDiffValue

      public String[] getDiffValue(boolean translate)
      Get (possibly translated) diff value
      Parameters:
      translate - flag
      Returns:
      translated diff value, or diff value
      See Also:
      • getTranslatedDiffValue()