Enum IdentityType

java.lang.Object
java.lang.Enum<IdentityType>
org.datanucleus.metadata.IdentityType
All Implemented Interfaces:
Serializable, Comparable<IdentityType>

public enum IdentityType extends Enum<IdentityType>
Representation of the values for identity-type.
  • Enum Constant Details

  • Constructor Details

    • IdentityType

      private IdentityType()
  • Method Details

    • values

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

      public static IdentityType valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getIdentityType

      public static IdentityType getIdentityType(String value)
      Return IdentityType from String.
      Parameters:
      value - identity-type attribute value
      Returns:
      Instance of IdentityType. If parse failed, return null.