public enum PolicyEventType extends Enum<PolicyEventType>
Enum Constant and Description |
---|
CREATE
When a policy is created.
|
DELETE
When a policy is deleted.
|
UPDATE
When a policy is updated.
|
Modifier and Type | Method and Description |
---|---|
static PolicyEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PolicyEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolicyEventType CREATE
public static final PolicyEventType DELETE
public static final PolicyEventType UPDATE
public static PolicyEventType[] values()
for (PolicyEventType c : PolicyEventType.values()) System.out.println(c);
public static PolicyEventType 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–2025 Open Identity Platform Community. All rights reserved.