public static enum BezierPathFunctions.OP extends Enum<BezierPathFunctions.OP>
Modifier and Type | Method and Description |
---|---|
static BezierPathFunctions.OP |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BezierPathFunctions.OP[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BezierPathFunctions.OP ADD
public static final BezierPathFunctions.OP XOR
public static final BezierPathFunctions.OP INTERSECT
public static final BezierPathFunctions.OP SUBTRACT
public static BezierPathFunctions.OP[] values()
for (BezierPathFunctions.OP c : BezierPathFunctions.OP.values()) System.out.println(c);
public static BezierPathFunctions.OP 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.