maspack.geometry
Enum BVFeatureQuery.InsideQuery

java.lang.Object
  extended by java.lang.Enum<BVFeatureQuery.InsideQuery>
      extended by maspack.geometry.BVFeatureQuery.InsideQuery
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BVFeatureQuery.InsideQuery>
Enclosing class:
BVFeatureQuery

public static enum BVFeatureQuery.InsideQuery
extends java.lang.Enum<BVFeatureQuery.InsideQuery>


Enum Constant Summary
INSIDE
           
ON
           
OUTSIDE
           
UNSURE
           
 
Method Summary
static BVFeatureQuery.InsideQuery valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BVFeatureQuery.InsideQuery[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INSIDE

public static final BVFeatureQuery.InsideQuery INSIDE

ON

public static final BVFeatureQuery.InsideQuery ON

OUTSIDE

public static final BVFeatureQuery.InsideQuery OUTSIDE

UNSURE

public static final BVFeatureQuery.InsideQuery UNSURE
Method Detail

values

public static BVFeatureQuery.InsideQuery[] 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 (BVFeatureQuery.InsideQuery c : BVFeatureQuery.InsideQuery.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static BVFeatureQuery.InsideQuery valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null