Enum XenonPropertyDescription.Type

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BOOLEAN
      Properties of type BOOLEAN can be either "true" or "false".
      DOUBLE
      Properties of type DOUBLE can be converted into a 64-bit floating point number using Double.valueOf(String).
      INTEGER
      Properties of type INTEGER can be converted into a 32-bit signed integer using Integer.valueOf(String).
      LONG
      Properties of type LONG can be converted into a 64-bit signed long using Long.valueOf(String).
      NATURAL
      Properties of type NATURAL may contain only positive values, including 0.
      SIZE
      Properties of type SIZE can be converted into a 64-bit signed long using Long.valueOf(String).
      STRING
      Properties of type STRING are directly stored in a String without conversion.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static XenonPropertyDescription.Type valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static XenonPropertyDescription.Type[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

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

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • INTEGER

        public static final XenonPropertyDescription.Type INTEGER
        Properties of type INTEGER can be converted into a 32-bit signed integer using Integer.valueOf(String).
      • LONG

        public static final XenonPropertyDescription.Type LONG
        Properties of type LONG can be converted into a 64-bit signed long using Long.valueOf(String).
      • NATURAL

        public static final XenonPropertyDescription.Type NATURAL
        Properties of type NATURAL may contain only positive values, including 0. They will be converted into a 64-bit signed long using Long.valueOf(String).
      • DOUBLE

        public static final XenonPropertyDescription.Type DOUBLE
        Properties of type DOUBLE can be converted into a 64-bit floating point number using Double.valueOf(String).
      • SIZE

        public static final XenonPropertyDescription.Type SIZE
        Properties of type SIZE can be converted into a 64-bit signed long using Long.valueOf(String). In addition, the postfixes "K", "M" and "G" may be used to multiply the value by 1024, 1024*1024, or 1024*1024*1024 respectively.
    • Method Detail

      • values

        public static XenonPropertyDescription.Type[] 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 (XenonPropertyDescription.Type c : XenonPropertyDescription.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static XenonPropertyDescription.Type 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