Package adams.flow.container
Enum SequencePlotterContainer.ContentType
- java.lang.Object
-
- java.lang.Enum<SequencePlotterContainer.ContentType>
-
- adams.flow.container.SequencePlotterContainer.ContentType
-
- All Implemented Interfaces:
Serializable
,Comparable<SequencePlotterContainer.ContentType>
- Enclosing class:
- SequencePlotterContainer
public static enum SequencePlotterContainer.ContentType extends Enum<SequencePlotterContainer.ContentType>
The type of content in the container.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SequencePlotterContainer.ContentType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SequencePlotterContainer.ContentType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLOT
public static final SequencePlotterContainer.ContentType PLOT
plot data.
-
MARKER
public static final SequencePlotterContainer.ContentType MARKER
marker.
-
OVERLAY
public static final SequencePlotterContainer.ContentType OVERLAY
overlay.
-
UPDATE
public static final SequencePlotterContainer.ContentType UPDATE
whether to force an update.
-
-
Method Detail
-
values
public static SequencePlotterContainer.ContentType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SequencePlotterContainer.ContentType c : SequencePlotterContainer.ContentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SequencePlotterContainer.ContentType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-