public enum DecisionTableOrientation extends Enum<DecisionTableOrientation>
Enum Constant and Description |
---|
CrossTable |
Rule_as_Column |
Rule_as_Row |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
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 CrossTable
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 toString()
toString
in class Enum<DecisionTableOrientation>
Copyright © 2022. All rights reserved.