Enum Class PrivateEnum

java.lang.Object
java.lang.Enum<PrivateEnum>
org.lfenergy.compas.sct.commons.util.PrivateEnum
All Implemented Interfaces:
Serializable, Comparable<PrivateEnum>, Constable

public enum PrivateEnum extends Enum<PrivateEnum>
A representation of the literals of the enumeration 'Private Enum', and utility methods for working with them.
  • Enum Constant Details

    • COMPAS_BAY

      public static final PrivateEnum COMPAS_BAY
    • COMPAS_CRITERIA

      public static final PrivateEnum COMPAS_CRITERIA
    • COMPAS_FLOW

      public static final PrivateEnum COMPAS_FLOW
    • COMPAS_FUNCTION

      public static final PrivateEnum COMPAS_FUNCTION
    • COMPAS_ICDHEADER

      public static final PrivateEnum COMPAS_ICDHEADER
    • COMPAS_LDEVICE

      public static final PrivateEnum COMPAS_LDEVICE
    • COMPAS_SCL_FILE_TYPE

      public static final PrivateEnum COMPAS_SCL_FILE_TYPE
    • COMPAS_SYSTEM_VERSION

      public static final PrivateEnum COMPAS_SYSTEM_VERSION
    • COMPAS_TOPO

      public static final PrivateEnum COMPAS_TOPO
  • Method Details

    • values

      public static PrivateEnum[] 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 PrivateEnum 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
    • fromClass

      public static PrivateEnum fromClass(Class<?> compasClass)
    • toString

      public String toString()
      Overrides:
      toString in class Enum<PrivateEnum>