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