public static enum TransformationResult.Resolution extends Enum<TransformationResult.Resolution>
| Modifier and Type | Method and Description |
|---|---|
static TransformationResult.Resolution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransformationResult.Resolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransformationResult.Resolution DISCARD
public static final TransformationResult.Resolution KEEP
public static final TransformationResult.Resolution REPLACE
public static final TransformationResult.Resolution UNDECIDED
public static TransformationResult.Resolution[] values()
for (TransformationResult.Resolution c : TransformationResult.Resolution.values()) System.out.println(c);
public static TransformationResult.Resolution 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 © 2014-2021 Lukas Krejci. All Rights Reserved.