public static enum SurfaceMeshIntersector.CSG extends java.lang.Enum<SurfaceMeshIntersector.CSG>
| Enum Constant and Description | 
|---|
| DIFFERENCE01 | 
| DIFFERENCE10 | 
| INTERSECTION | 
| NONE | 
| UNION | 
| Modifier and Type | Method and Description | 
|---|---|
| static SurfaceMeshIntersector.CSG | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static SurfaceMeshIntersector.CSG[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SurfaceMeshIntersector.CSG INTERSECTION
public static final SurfaceMeshIntersector.CSG UNION
public static final SurfaceMeshIntersector.CSG DIFFERENCE01
public static final SurfaceMeshIntersector.CSG DIFFERENCE10
public static final SurfaceMeshIntersector.CSG NONE
public static SurfaceMeshIntersector.CSG[] values()
for (SurfaceMeshIntersector.CSG c : SurfaceMeshIntersector.CSG.values()) System.out.println(c);
public static SurfaceMeshIntersector.CSG valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null