public static enum Strings.Justify extends Enum<Strings.Justify>
| Modifier and Type | Method and Description |
|---|---|
static Strings.Justify |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Strings.Justify[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Strings.Justify LEFT
public static final Strings.Justify RIGHT
public static final Strings.Justify CENTER
public static Strings.Justify[] values()
for (Strings.Justify c : Strings.Justify.values()) System.out.println(c);
public static Strings.Justify 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 nullCopyright © 2019 JBoss by Red Hat. All rights reserved.