public enum WmlJustification extends Enum<WmlJustification>
Enum Constant and Description |
---|
both |
center |
distribute |
end |
highKashida |
left |
lowKashida |
mediumKashida |
numTab |
right |
start |
thaiDistribute |
Modifier and Type | Method and Description |
---|---|
static WmlJustification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WmlJustification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WmlJustification both
public static final WmlJustification center
public static final WmlJustification distribute
public static final WmlJustification start
public static final WmlJustification end
public static final WmlJustification left
public static final WmlJustification right
public static final WmlJustification numTab
public static final WmlJustification highKashida
public static final WmlJustification lowKashida
public static final WmlJustification mediumKashida
public static final WmlJustification thaiDistribute
public static WmlJustification[] values()
for (WmlJustification c : WmlJustification.values()) System.out.println(c);
public static WmlJustification 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 null
jataylor@hairyfatguy.com