public static enum RoundedCornersTransformation.CornerType extends java.lang.Enum<RoundedCornersTransformation.CornerType>
| Enum Constant and Description |
|---|
ALL |
BOTTOM |
BOTTOM_LEFT |
BOTTOM_RIGHT |
DIAGONAL_FROM_TOP_LEFT |
DIAGONAL_FROM_TOP_RIGHT |
LEFT |
OTHER_BOTTOM_LEFT |
OTHER_BOTTOM_RIGHT |
OTHER_TOP_LEFT |
OTHER_TOP_RIGHT |
RIGHT |
TOP |
TOP_LEFT |
TOP_RIGHT |
| Modifier and Type | Method and Description |
|---|---|
static RoundedCornersTransformation.CornerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RoundedCornersTransformation.CornerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoundedCornersTransformation.CornerType ALL
public static final RoundedCornersTransformation.CornerType TOP_LEFT
public static final RoundedCornersTransformation.CornerType TOP_RIGHT
public static final RoundedCornersTransformation.CornerType BOTTOM_LEFT
public static final RoundedCornersTransformation.CornerType BOTTOM_RIGHT
public static final RoundedCornersTransformation.CornerType TOP
public static final RoundedCornersTransformation.CornerType BOTTOM
public static final RoundedCornersTransformation.CornerType LEFT
public static final RoundedCornersTransformation.CornerType RIGHT
public static final RoundedCornersTransformation.CornerType OTHER_TOP_LEFT
public static final RoundedCornersTransformation.CornerType OTHER_TOP_RIGHT
public static final RoundedCornersTransformation.CornerType OTHER_BOTTOM_LEFT
public static final RoundedCornersTransformation.CornerType OTHER_BOTTOM_RIGHT
public static final RoundedCornersTransformation.CornerType DIAGONAL_FROM_TOP_LEFT
public static final RoundedCornersTransformation.CornerType DIAGONAL_FROM_TOP_RIGHT
public static RoundedCornersTransformation.CornerType[] values()
for (RoundedCornersTransformation.CornerType c : RoundedCornersTransformation.CornerType.values()) System.out.println(c);
public static RoundedCornersTransformation.CornerType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null