org.zmpp.vmutil
Enum ZsciiConverter.Alphabet

java.lang.Object
  extended by java.lang.Enum<ZsciiConverter.Alphabet>
      extended by org.zmpp.vmutil.ZsciiConverter.Alphabet
All Implemented Interfaces:
Serializable, Comparable<ZsciiConverter.Alphabet>
Enclosing class:
ZsciiConverter

public static enum ZsciiConverter.Alphabet
extends Enum<ZsciiConverter.Alphabet>

Defines the possible alphabets here.


Enum Constant Summary
A0
           
A1
           
A2
           
 
Method Summary
static ZsciiConverter.Alphabet valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ZsciiConverter.Alphabet[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

A0

public static final ZsciiConverter.Alphabet A0

A1

public static final ZsciiConverter.Alphabet A1

A2

public static final ZsciiConverter.Alphabet A2
Method Detail

values

public static final ZsciiConverter.Alphabet[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ZsciiConverter.Alphabet c : ZsciiConverter.Alphabet.values())
        System.out.println(c);

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

valueOf

public static ZsciiConverter.Alphabet 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 name


Copyright © 2005 . All Rights Reserved.