ch.claudio.oldcomputer
Enum Disktype

java.lang.Object
  extended by java.lang.Enum<Disktype>
      extended by ch.claudio.oldcomputer.Disktype
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Disktype>

public enum Disktype
extends java.lang.Enum<Disktype>

Author:
claudio

Enum Constant Summary
cpm
           
dos32
           
dos33
           
prodos
           
ucsd
           
 
Method Summary
static Disktype valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Disktype[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

dos32

public static final Disktype dos32

dos33

public static final Disktype dos33

cpm

public static final Disktype cpm

ucsd

public static final Disktype ucsd

prodos

public static final Disktype prodos
Method Detail

values

public static Disktype[] 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 (Disktype c : Disktype.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Disktype 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