public enum AlignmentKind extends Enum<AlignmentKind>
Modifier and Type | Method and Description |
---|---|
static AlignmentKind |
fromValue(String v) |
String |
value() |
static AlignmentKind |
valueOf(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.
|
public static final AlignmentKind START
public static final AlignmentKind END
public static final AlignmentKind CENTER
public static AlignmentKind[] values()
for (AlignmentKind c : AlignmentKind.values()) System.out.println(c);
public static AlignmentKind 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 AlignmentKind fromValue(String v)
Copyright © 2001–2018 JBoss by Red Hat. All rights reserved.