Enum AbstractValue.ValueState

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      DIFFERENT
      Defines state where value was read from a config file, and is the not the same as the decoder.
      EDITED
      Defines state where value has been edited, no longer same as in decoder or file.
      FROMFILE
      Defines state where value was read from a config file, but might not be the same as the decoder.
      READ
      Defines state where value has been read from (hence same as) decoder, but perhaps not same as in file.
      SAME
      Defines state where value was read from a config file, and is the same as the decoder.
      STORED
      Defines state where value has been written to (hence same as) decoder, but perhaps not same as in file.
      UNKNOWN
      Defines state when nothing is known about the real value.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.awt.Color getColor()
      Gets the color associated with this state value.
      java.lang.String getName()
      Gets the name associated with this state value.
      static AbstractValue.ValueState valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static AbstractValue.ValueState[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static AbstractValue.ValueState[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (AbstractValue.ValueState c : AbstractValue.ValueState.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AbstractValue.ValueState valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getColor

        public java.awt.Color getColor()
        Gets the color associated with this state value.
        Returns:
        the color assigned to this state value or null if to use default for the component
      • getName

        public java.lang.String getName()
        Gets the name associated with this state value.
        Returns:
        the name assigned to this state value