public enum KindOfTangent extends Enum<KindOfTangent> implements Enumeration
| Enum Constant and Description | 
|---|
INCOMING_TANGENT
Indicates that the given tangent is entering the surface arc. 
 | 
OUTGOING_TANGENT
Indicates that the given tangent is leaving the surface arc. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static KindOfTangent | 
getDefault()
Get the enum constant that is considered to be the default. 
 | 
static KindOfTangent | 
getFromValue(int value)
Get the enum constant that is associated with the given numeric value. 
 | 
int | 
getValue()
Get the numeric value associated with this enum constant. 
 | 
static KindOfTangent | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static KindOfTangent[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final KindOfTangent INCOMING_TANGENT
public static final KindOfTangent OUTGOING_TANGENT
public static KindOfTangent[] values()
for (KindOfTangent c : KindOfTangent.values()) System.out.println(c);
public static KindOfTangent 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 nullpublic int getValue()
getValue in interface Enumeration@Nonnull public static KindOfTangent getFromValue(int value)
value - a numeric value.@Nonnull public static KindOfTangent getDefault()