cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes
Enum ECSGOperation
java.lang.Object
java.lang.Enum<ECSGOperation>
cz.cuni.amis.pogamut.unreal.t3dgenerator.datatypes.ECSGOperation
- All Implemented Interfaces:
- Serializable, Comparable<ECSGOperation>
public enum ECSGOperation
- extends Enum<ECSGOperation>
Operation for Constructive solid geometry (CSG) operations on brushes.
- Author:
- Martin Cerny
|
Method Summary |
static ECSGOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ECSGOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
ADD
public static final ECSGOperation ADD
SUBTRACT
public static final ECSGOperation SUBTRACT
ACTIVE
public static final ECSGOperation ACTIVE
INTERSECT
public static final ECSGOperation INTERSECT
DEINTERSECT
public static final ECSGOperation DEINTERSECT
values
public static ECSGOperation[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ECSGOperation c : ECSGOperation.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ECSGOperation valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2015 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.