com.partnersoft.preferences.model
Enum Subsystem
java.lang.Object
java.lang.Enum<Subsystem>
com.partnersoft.preferences.model.Subsystem
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Subsystem>
public enum Subsystem
- extends java.lang.Enum<Subsystem>
This is an enumeration of standard subsystems managed by preferences.
Copyright 2010 Partner Software, Inc.
- Version:
- $Id$
- Author:
- Paul Reavis
|
Method Summary |
static Subsystem |
forName(java.lang.String name)
|
java.lang.String |
getName()
|
java.lang.String |
toString()
|
static Subsystem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Subsystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
MAPSPACE
public static final Subsystem MAPSPACE
LAYOUT
public static final Subsystem LAYOUT
VIDEO
public static final Subsystem VIDEO
CONTROL
public static final Subsystem CONTROL
SOUND
public static final Subsystem SOUND
UPDATE
public static final Subsystem UPDATE
values
public static Subsystem[] 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 (Subsystem c : Subsystem.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Subsystem valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
forName
public static Subsystem forName(java.lang.String name)
toString
public java.lang.String toString()
- Overrides:
toString in class java.lang.Enum<Subsystem>
getName
public java.lang.String getName()