public enum DefeasibleRuleNature extends Enum<DefeasibleRuleNature>
| Enum Constant and Description |
|---|
DEFEASIBLE |
DEFEATER |
STRICT |
| Modifier and Type | Method and Description |
|---|---|
String |
getLabel() |
static DefeasibleRuleNature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefeasibleRuleNature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefeasibleRuleNature STRICT
public static final DefeasibleRuleNature DEFEASIBLE
public static final DefeasibleRuleNature DEFEATER
public static DefeasibleRuleNature[] values()
for (DefeasibleRuleNature c : DefeasibleRuleNature.values()) System.out.println(c);
public static DefeasibleRuleNature 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 nullpublic String getLabel()
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.