public enum Logic extends Enum<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 Logic |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Logic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Logic POSITIVE
public static final Logic NEGATIVE
public static Logic[] values()
for (Logic c : Logic.values()) System.out.println(c);
public static 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 © 2019 JBoss by Red Hat. All rights reserved.