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