public enum BravaisLattice extends Enum<BravaisLattice>
Enum Constant and Description |
---|
CUBIC |
HEXAGONAL |
MONOCLINIC |
ORTHORHOMBIC |
TETRAGONAL |
TRICLINIC |
TRIGONAL |
Modifier and Type | Method and Description |
---|---|
static BravaisLattice |
getByName(String blName) |
CrystalCell |
getExampleUnitCell() |
int |
getId() |
String |
getName() |
static BravaisLattice |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BravaisLattice[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BravaisLattice TRICLINIC
public static final BravaisLattice MONOCLINIC
public static final BravaisLattice ORTHORHOMBIC
public static final BravaisLattice TETRAGONAL
public static final BravaisLattice TRIGONAL
public static final BravaisLattice HEXAGONAL
public static final BravaisLattice CUBIC
public static BravaisLattice[] values()
for (BravaisLattice c : BravaisLattice.values()) System.out.println(c);
public static BravaisLattice 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 getId()
public CrystalCell getExampleUnitCell()
public static BravaisLattice getByName(String blName)
Copyright © 2000–2019 BioJava. All rights reserved.