Enum Class IOValue

java.lang.Object
java.lang.Enum<IOValue>
frc.team_8840_lib.utils.IO.IOValue
All Implemented Interfaces:
Serializable, Comparable<IOValue>, Constable

public enum IOValue extends Enum<IOValue>
  • Enum Constant Details

    • DOUBLE

      public static final IOValue DOUBLE
    • INT

      public static final IOValue INT
    • STRING

      public static final IOValue STRING
    • BOOLEAN

      public static final IOValue BOOLEAN
    • BYTE_ARRAY

      public static final IOValue BYTE_ARRAY
    • DOUBLE_ARRAY

      public static final IOValue DOUBLE_ARRAY
    • LONG_ARRAY

      public static final IOValue LONG_ARRAY
    • STRING_ARRAY

      public static final IOValue STRING_ARRAY
    • BOOLEAN_ARRAY

      public static final IOValue BOOLEAN_ARRAY
    • NONE

      public static final IOValue NONE
  • Method Details

    • values

      public static IOValue[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static IOValue valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null