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