public enum GovernanceDeactivationStrategy extends Enum<GovernanceDeactivationStrategy>
Governance
.Enum Constant and Description |
---|
DISREGARD
Flags that the
Governance should be disregarded. |
ENFORCE
Flags that the
Governance should be enforced. |
Modifier and Type | Method and Description |
---|---|
static GovernanceDeactivationStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GovernanceDeactivationStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GovernanceDeactivationStrategy ENFORCE
Governance
should be enforced.public static final GovernanceDeactivationStrategy DISREGARD
Governance
should be disregarded.public static GovernanceDeactivationStrategy[] values()
for (GovernanceDeactivationStrategy c : GovernanceDeactivationStrategy.values()) System.out.println(c);
public static GovernanceDeactivationStrategy 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 © 2005–2016. All rights reserved.