funcscan
Version 1.0.0

de.ovgu.cs.funcscan
Enum Symbol

java.lang.Object
  extended by java.lang.Enum<Symbol>
      extended by de.ovgu.cs.funcscan.Symbol
All Implemented Interfaces:
Serializable, Comparable<Symbol>

public enum Symbol
extends Enum<Symbol>

Version:
$Revision: 577 $
Author:
Jens Elkner

Enum Constant Summary
a
          same as described in nm(1)
A
          same as described in nm(1)
b
          same as described in nm(1)
B
          same as described in nm(1)
c
          same as described in nm(1)
C
          same as described in nm(1)
d
          same as described in nm(1)
D
          same as described in nm(1)
f
          same as described in nm(1)
F
          same as described in nm(1)
l
          same as described in nm(1)
L
          same as described in nm(1)
n
          same as described in nm(1)
N
          same as described in nm(1)
s
          same as described in nm(1)
S
          same as described in nm(1)
t
          same as described in nm(1)
T
          same as described in nm(1)
u
          same as described in nm(1)
U
          same as described in nm(1)
 
Method Summary
 String toString()
          
static Symbol valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Symbol[] 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
 

Enum Constant Detail

A

public static final Symbol A
same as described in nm(1)


B

public static final Symbol B
same as described in nm(1)


C

public static final Symbol C
same as described in nm(1)


D

public static final Symbol D
same as described in nm(1)


F

public static final Symbol F
same as described in nm(1)


N

public static final Symbol N
same as described in nm(1)


L

public static final Symbol L
same as described in nm(1)


S

public static final Symbol S
same as described in nm(1)


T

public static final Symbol T
same as described in nm(1)


U

public static final Symbol U
same as described in nm(1)


a

public static final Symbol a
same as described in nm(1)


b

public static final Symbol b
same as described in nm(1)


c

public static final Symbol c
same as described in nm(1)


d

public static final Symbol d
same as described in nm(1)


f

public static final Symbol f
same as described in nm(1)


n

public static final Symbol n
same as described in nm(1)


l

public static final Symbol l
same as described in nm(1)


s

public static final Symbol s
same as described in nm(1)


t

public static final Symbol t
same as described in nm(1)


u

public static final Symbol u
same as described in nm(1)

Method Detail

values

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

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

valueOf

public static Symbol 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
NullPointerException - if the argument is null

toString

public String toString()

Overrides:
toString in class Enum<Symbol>

funcscan
Version 1.0.0

Created by Jens Elkner