public enum UserSchemaAttributeType extends Enum<UserSchemaAttributeType>
Enum Constant and Description |
---|
ARRAY |
BOOLEAN |
INTEGER |
NUMBER |
STRING |
Modifier and Type | Method and Description |
---|---|
static UserSchemaAttributeType |
fromValue(String value) |
String |
getValue() |
String |
toString() |
String |
toUrlQueryString(String prefix)
Convert the instance into URL query string.
|
static UserSchemaAttributeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserSchemaAttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserSchemaAttributeType ARRAY
public static final UserSchemaAttributeType BOOLEAN
public static final UserSchemaAttributeType INTEGER
public static final UserSchemaAttributeType NUMBER
public static final UserSchemaAttributeType STRING
public static UserSchemaAttributeType[] values()
for (UserSchemaAttributeType c : UserSchemaAttributeType.values()) System.out.println(c);
public static UserSchemaAttributeType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getValue()
public String toString()
toString
in class Enum<UserSchemaAttributeType>
public static UserSchemaAttributeType fromValue(String value)
Copyright © 2017–2023 Okta. All rights reserved.