public static enum Range.InsertCopyOrigin extends Enum<Range.InsertCopyOrigin>
Enum Constant and Description |
---|
FORMAT_LEFT_ABOVE |
FORMAT_NONE |
FORMAT_RIGHT_BELOW |
Modifier and Type | Method and Description |
---|---|
static Range.InsertCopyOrigin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Range.InsertCopyOrigin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Range.InsertCopyOrigin FORMAT_NONE
public static final Range.InsertCopyOrigin FORMAT_LEFT_ABOVE
public static final Range.InsertCopyOrigin FORMAT_RIGHT_BELOW
public static Range.InsertCopyOrigin[] values()
for (Range.InsertCopyOrigin c : Range.InsertCopyOrigin.values()) System.out.println(c);
public static Range.InsertCopyOrigin valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.