public enum WritePolicy extends Enum<WritePolicy>
Schema
write policies.Enum Constant and Description |
---|
WRITABLE
The property can be set at any time.
|
WRITE_ON_CREATE
The property MAY be set in the create request, but not thereafter.
|
WRITE_ONCE
The property MAY be set only if the current value is NULL.
|
Modifier and Type | Method and Description |
---|---|
static WritePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WritePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WritePolicy WRITE_ON_CREATE
public static final WritePolicy WRITE_ONCE
public static final WritePolicy WRITABLE
public static WritePolicy[] values()
for (WritePolicy c : WritePolicy.values()) System.out.println(c);
public static WritePolicy 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 © 2010-2018, ForgeRock All Rights Reserved.