Package io.keikai.api
Enum Range.PasteType
- java.lang.Object
-
- java.lang.Enum<Range.PasteType>
-
- io.keikai.api.Range.PasteType
-
- All Implemented Interfaces:
Serializable
,Comparable<Range.PasteType>
- Enclosing interface:
- Range
public static enum Range.PasteType extends Enum<Range.PasteType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
ALL_EXCEPT_BORDERS
COLUMN_WIDTHS
COMMENTS
FORMATS
FORMULAS
FORMULAS_AND_NUMBER_FORMATS
VALIDATAION
VALUES
VALUES_AND_NUMBER_FORMATS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Range.PasteType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Range.PasteType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final Range.PasteType ALL
-
ALL_EXCEPT_BORDERS
public static final Range.PasteType ALL_EXCEPT_BORDERS
-
COLUMN_WIDTHS
public static final Range.PasteType COLUMN_WIDTHS
-
COMMENTS
public static final Range.PasteType COMMENTS
-
FORMATS
public static final Range.PasteType FORMATS
-
FORMULAS
public static final Range.PasteType FORMULAS
-
FORMULAS_AND_NUMBER_FORMATS
public static final Range.PasteType FORMULAS_AND_NUMBER_FORMATS
-
VALIDATAION
public static final Range.PasteType VALIDATAION
-
VALUES
public static final Range.PasteType VALUES
-
VALUES_AND_NUMBER_FORMATS
public static final Range.PasteType VALUES_AND_NUMBER_FORMATS
-
-
Method Detail
-
values
public static Range.PasteType[] 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.PasteType c : Range.PasteType.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.PasteType 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
-
-