java.lang.Object
java.lang.Enum<Type>
de.captaingoldfish.scim.sdk.common.constants.enums.Type
All Implemented Interfaces:
Serializable, Comparable<Type>, java.lang.constant.Constable

public enum Type extends Enum<Type>
author Pascal Knueppel
created at: 28.09.2019 - 18:00

The attribute's data type. Valid values are "string", "boolean", "decimal", "integer", "dateTime", "reference", and "complex". When an attribute is of type "complex", there SHOULD be a corresponding schema attribute "subAttributes" defined, listing the sub-attributes of the attribute.
  • Enum Constant Details

    • ANY

      public static final Type ANY
    • STRING

      public static final Type STRING
    • COMPLEX

      public static final Type COMPLEX
    • BOOLEAN

      public static final Type BOOLEAN
    • DECIMAL

      public static final Type DECIMAL
    • INTEGER

      public static final Type INTEGER
    • DATE_TIME

      public static final Type DATE_TIME
    • REFERENCE

      public static final Type REFERENCE
    • BINARY

      public static final Type BINARY
  • Method Details

    • values

      public static Type[] 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 Type 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
    • getByValue

      public static Type getByValue(String value)
    • getValue

      public String getValue()