Package org.kie.dmn.model.api.dmndi
Enum AlignmentKind
- java.lang.Object
-
- java.lang.Enum<AlignmentKind>
-
- org.kie.dmn.model.api.dmndi.AlignmentKind
-
- All Implemented Interfaces:
Serializable,Comparable<AlignmentKind>
public enum AlignmentKind extends Enum<AlignmentKind>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AlignmentKindfromValue(String v)Stringvalue()static AlignmentKindvalueOf(String name)Returns the enum constant of this type with the specified name.static AlignmentKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START
public static final AlignmentKind START
-
END
public static final AlignmentKind END
-
CENTER
public static final AlignmentKind CENTER
-
-
Method Detail
-
values
public static AlignmentKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AlignmentKind c : AlignmentKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlignmentKind valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static AlignmentKind fromValue(String v)
-
-