public enum CssAlignment extends Enum<CssAlignment> implements CssAllowedValue
Modifier and Type | Method and Description |
---|---|
static CssAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CssAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
getName
public static final CssAlignment LEFT
public static final CssAlignment CENTER
public static final CssAlignment RIGHT
public static CssAlignment[] values()
for (CssAlignment c : CssAlignment.values()) System.out.println(c);
public static CssAlignment 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 © 2012–2020 JBoss by Red Hat. All rights reserved.