public enum AlignSelf extends Enum<AlignSelf>
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static AlignSelf |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlignSelf[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlignSelf BASLINE
public static final AlignSelf CENTER
public static final AlignSelf END
public static final AlignSelf START
public static final AlignSelf STRETCH
public static AlignSelf[] values()
for (AlignSelf c : AlignSelf.values()) System.out.println(c);
public static AlignSelf 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 nullpublic String getValue()
Copyright © 2021. All rights reserved.