Package io.keikai.api
Enum Range.ApplyBorderType
- java.lang.Object
-
- java.lang.Enum<Range.ApplyBorderType>
-
- io.keikai.api.Range.ApplyBorderType
-
- All Implemented Interfaces:
Serializable
,Comparable<Range.ApplyBorderType>
- Enclosing interface:
- Range
public static enum Range.ApplyBorderType extends Enum<Range.ApplyBorderType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIAGONAL
DIAGONAL_DOWN
DIAGONAL_UP
EDGE_BOTTOM
EDGE_LEFT
EDGE_RIGHT
EDGE_TOP
FULL
INSIDE
INSIDE_HORIZONTAL
INSIDE_VERTICAL
OUTLINE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Range.ApplyBorderType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Range.ApplyBorderType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FULL
public static final Range.ApplyBorderType FULL
-
EDGE_BOTTOM
public static final Range.ApplyBorderType EDGE_BOTTOM
-
EDGE_RIGHT
public static final Range.ApplyBorderType EDGE_RIGHT
-
EDGE_TOP
public static final Range.ApplyBorderType EDGE_TOP
-
EDGE_LEFT
public static final Range.ApplyBorderType EDGE_LEFT
-
OUTLINE
public static final Range.ApplyBorderType OUTLINE
-
INSIDE
public static final Range.ApplyBorderType INSIDE
-
INSIDE_HORIZONTAL
public static final Range.ApplyBorderType INSIDE_HORIZONTAL
-
INSIDE_VERTICAL
public static final Range.ApplyBorderType INSIDE_VERTICAL
-
DIAGONAL
public static final Range.ApplyBorderType DIAGONAL
-
DIAGONAL_DOWN
public static final Range.ApplyBorderType DIAGONAL_DOWN
-
DIAGONAL_UP
public static final Range.ApplyBorderType DIAGONAL_UP
-
-
Method Detail
-
values
public static Range.ApplyBorderType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Range.ApplyBorderType c : Range.ApplyBorderType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Range.ApplyBorderType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-