public enum EHorzAlignment extends Enum<EHorzAlignment> implements com.helger.commons.id.IHasID<String>
| Enum Constant and Description |
|---|
CENTER
Align center
|
LEFT
Align left
|
RIGHT
Align right
|
| Modifier and Type | Field and Description |
|---|---|
static EHorzAlignment |
DEFAULT |
| Modifier and Type | Method and Description |
|---|---|
static EHorzAlignment |
getFromIDOrNull(String sID) |
String |
getID() |
static EHorzAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EHorzAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EHorzAlignment LEFT
public static final EHorzAlignment CENTER
public static final EHorzAlignment RIGHT
public static final EHorzAlignment DEFAULT
public static EHorzAlignment[] values()
for (EHorzAlignment c : EHorzAlignment.values()) System.out.println(c);
public static EHorzAlignment 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@Nonnull @Nonempty public String getID()
getID in interface com.helger.commons.id.IHasID<String>@Nullable public static EHorzAlignment getFromIDOrNull(@Nullable String sID)
Copyright © 2014–2016 Philip Helger. All rights reserved.