public enum SequenceContentType extends Enum<SequenceContentType>
| Enum Constant and Description |
|---|
REVIEWED |
REVIEWED_AND_ISOFORMS |
UNREVIEWED |
UNREVIEWED_AND_ISOFORMS |
| Modifier and Type | Method and Description |
|---|---|
static SequenceContentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SequenceContentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequenceContentType REVIEWED
public static final SequenceContentType UNREVIEWED
public static final SequenceContentType REVIEWED_AND_ISOFORMS
public static final SequenceContentType UNREVIEWED_AND_ISOFORMS
public static SequenceContentType[] values()
for (SequenceContentType c : SequenceContentType.values()) System.out.println(c);
public static SequenceContentType 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 nullCopyright © 2016. All rights reserved.