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