public enum EnumFiniteVolume extends java.lang.Enum<EnumFiniteVolume>
| Enum Constant and Description |
|---|
NO
NO - Does not contain a finite volume.
|
UNKNOWN
UNKNOWN - Might or might not contain a finite volume.
|
YES
YES - Contains a finite volume.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns whether the surface represents
a solid ("waterproof") object with an outside and an inside.
|
static EnumFiniteVolume |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumFiniteVolume[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumFiniteVolume YES
public static final EnumFiniteVolume NO
public static final EnumFiniteVolume UNKNOWN
public static EnumFiniteVolume[] values()
for (EnumFiniteVolume c : EnumFiniteVolume.values()) System.out.println(c);
public static EnumFiniteVolume 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 nullpublic java.lang.String getValue()