public enum ReadPolicy extends Enum<ReadPolicy>
Schema read policies.| Enum Constant and Description |
|---|
CLIENT
Property is hidden from user-interface, but readable via client APIs.
|
SERVER
Property is available internally, but not exposed to client APIs.
|
USER
Property is readable via client APIs and visible in the user-interface.
|
| Modifier and Type | Method and Description |
|---|---|
static ReadPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReadPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadPolicy USER
public static final ReadPolicy CLIENT
ReadPolicy is not specified.public static final ReadPolicy SERVER
public static ReadPolicy[] values()
for (ReadPolicy c : ReadPolicy.values()) System.out.println(c);
public static ReadPolicy 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 © 2025 Open Identity Platform Community. All rights reserved.