public static enum SpecialOp.Flavor extends Enum<SpecialOp.Flavor>
Modifier and Type | Method and Description |
---|---|
static SpecialOp.Flavor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpecialOp.Flavor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecialOp.Flavor COMPUTER
public static final SpecialOp.Flavor FUNCTION
public static final SpecialOp.Flavor INPLACE
public static SpecialOp.Flavor[] values()
for (SpecialOp.Flavor c : SpecialOp.Flavor.values()) System.out.println(c);
public static SpecialOp.Flavor 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–2022 ImageJ. All rights reserved.