public static enum SchemaChecker.Option extends Enum<SchemaChecker.Option>
| Enum Constant and Description |
|---|
ALLOW_UNDEFINED_ATTRIBUTES
Relax SCIM 2 standard schema requirements by allowing core or extended
attributes in the resource that are not defined by any schema in the
resource type definition.
|
ALLOW_UNDEFINED_SUB_ATTRIBUTES
Relax SCIM 2 standard schema requirements by allowing sub-attributes
that are not defined by the definition of the parent attribute.
|
| Modifier and Type | Method and Description |
|---|---|
static SchemaChecker.Option |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchemaChecker.Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaChecker.Option ALLOW_UNDEFINED_ATTRIBUTES
public static final SchemaChecker.Option ALLOW_UNDEFINED_SUB_ATTRIBUTES
public static SchemaChecker.Option[] values()
for (SchemaChecker.Option c : SchemaChecker.Option.values()) System.out.println(c);
public static SchemaChecker.Option 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 nullCopyright © 2015–2016 UnboundID Corp.. All rights reserved.