public static enum Glossary.Category extends java.lang.Enum<Glossary.Category>
| Enum Constant and Description |
|---|
GENERAL |
HEMATO |
LYMPH_NODES |
SEER_TRAINING |
SEERRX |
SOLID_TUMOR |
STAGING |
| Modifier and Type | Method and Description |
|---|---|
static Glossary.Category |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Glossary.Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Glossary.Category GENERAL
public static final Glossary.Category SOLID_TUMOR
public static final Glossary.Category HEMATO
public static final Glossary.Category SEERRX
public static final Glossary.Category SEER_TRAINING
public static final Glossary.Category LYMPH_NODES
public static final Glossary.Category STAGING
public static Glossary.Category[] values()
for (Glossary.Category c : Glossary.Category.values()) System.out.println(c);
public static Glossary.Category 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 null