public enum PeelingMethod extends Enum<PeelingMethod>
| Enum Constant and Description |
|---|
DUAL_PEELING_MODE |
F2B_PEELING_MODE |
WEIGHTED_AVERAGE_MODE |
WEIGHTED_SUM_MODE |
| Modifier and Type | Method and Description |
|---|---|
static PeelingMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PeelingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PeelingMethod DUAL_PEELING_MODE
public static final PeelingMethod F2B_PEELING_MODE
public static final PeelingMethod WEIGHTED_AVERAGE_MODE
public static final PeelingMethod WEIGHTED_SUM_MODE
public static PeelingMethod[] values()
for (PeelingMethod c : PeelingMethod.values()) System.out.println(c);
public static PeelingMethod 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 © 2016. All rights reserved.