Package io.keikai.range
Enum SRange.PasteType
- java.lang.Object
-
- java.lang.Enum<SRange.PasteType>
-
- io.keikai.range.SRange.PasteType
-
- All Implemented Interfaces:
Serializable
,Comparable<SRange.PasteType>
- Enclosing interface:
- SRange
public static enum SRange.PasteType extends Enum<SRange.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 SRange.PasteType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SRange.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 SRange.PasteType ALL
-
ALL_EXCEPT_BORDERS
public static final SRange.PasteType ALL_EXCEPT_BORDERS
-
COLUMN_WIDTHS
public static final SRange.PasteType COLUMN_WIDTHS
-
COMMENTS
public static final SRange.PasteType COMMENTS
-
FORMATS
public static final SRange.PasteType FORMATS
-
FORMULAS
public static final SRange.PasteType FORMULAS
-
FORMULAS_AND_NUMBER_FORMATS
public static final SRange.PasteType FORMULAS_AND_NUMBER_FORMATS
-
VALIDATAION
public static final SRange.PasteType VALIDATAION
-
VALUES
public static final SRange.PasteType VALUES
-
VALUES_AND_NUMBER_FORMATS
public static final SRange.PasteType VALUES_AND_NUMBER_FORMATS
-
-
Method Detail
-
values
public static SRange.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 (SRange.PasteType c : SRange.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 SRange.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
-
-