public static enum Face.Type extends Enum<Face.Type>
FaceLattice
Enum Constant and Description |
---|
Bottom
The (artificial) bottom element of the lattice,
corresponding to the empty covector.
|
Cocircuit
The first layer of the lattice, corresponding to points
in the pseudosphere construction, or cocircuits of the oriented matroid.
|
Covector
|
Top
The artificial top element of the face lattice.
|
Tope
The top most (real) faces of lattice, corresponding to the topes of the construction.
|
Modifier and Type | Method and Description |
---|---|
static Face.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Face.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Face.Type Bottom
public static final Face.Type Cocircuit
public static final Face.Type Covector
public static final Face.Type Tope
public static final Face.Type Top
public static Face.Type[] values()
for (Face.Type c : Face.Type.values()) System.out.println(c);
public static Face.Type 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 null