| Enum Constant and Description |
|---|
ColumnWidths
Specifies to only paste column widths.
|
Formats
Specifies to only paste formats.
|
Formulas
Specifies to only paste cell formulas.
|
NumberFormats
Specifies to only paste number formats.
|
RowHeights
Specifies to only paste row heights.
|
Values
Specifies to only paste cell values.
|
| Modifier and Type | Field and Description |
|---|---|
static java.util.EnumSet<PasteType> |
Default
Specifies to paste all data except RowHeights and ColumnWidths.
|
| Modifier and Type | Method and Description |
|---|---|
static PasteType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PasteType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PasteType Values
public static final PasteType Formulas
public static final PasteType Formats
public static final PasteType NumberFormats
public static final PasteType ColumnWidths
public static final PasteType RowHeights
public static java.util.EnumSet<PasteType> Default
public static PasteType[] values()
for (PasteType c : PasteType.values()) System.out.println(c);
public static PasteType 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