public static enum Policy.Logic extends Enum<Policy.Logic>
| Enum Constant and Description |
|---|
NEGATIVE
Defines that this policy uses a logical negation.
|
POSITIVE
Defines that this policy follows a positive logic.
|
| Modifier and Type | Method and Description |
|---|---|
static Policy.Logic |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Policy.Logic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Policy.Logic POSITIVE
public static final Policy.Logic NEGATIVE
public static Policy.Logic[] values()
for (Policy.Logic c : Policy.Logic.values()) System.out.println(c);
public static Policy.Logic 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 © 2016 JBoss by Red Hat. All rights reserved.