org.uacalc.alg
Enum SmallAlgebra.AlgebraType

java.lang.Object
  extended by java.lang.Enum<SmallAlgebra.AlgebraType>
      extended by org.uacalc.alg.SmallAlgebra.AlgebraType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SmallAlgebra.AlgebraType>
Enclosing interface:
SmallAlgebra

public static enum SmallAlgebra.AlgebraType
extends java.lang.Enum<SmallAlgebra.AlgebraType>


Enum Constant Summary
BASIC
           
BASIC_LATTICE
           
FREE
           
POLIN_LIKE
           
POWER
           
PRODUCT
           
QUOTIENT
           
REDUCT
           
SUBALGEBRA
           
SUBPRODUCT
           
UNARY_TERMS_MONOID
           
 
Method Summary
static SmallAlgebra.AlgebraType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SmallAlgebra.AlgebraType[] 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

BASIC

public static final SmallAlgebra.AlgebraType BASIC

BASIC_LATTICE

public static final SmallAlgebra.AlgebraType BASIC_LATTICE

QUOTIENT

public static final SmallAlgebra.AlgebraType QUOTIENT

SUBALGEBRA

public static final SmallAlgebra.AlgebraType SUBALGEBRA

PRODUCT

public static final SmallAlgebra.AlgebraType PRODUCT

POWER

public static final SmallAlgebra.AlgebraType POWER

REDUCT

public static final SmallAlgebra.AlgebraType REDUCT

SUBPRODUCT

public static final SmallAlgebra.AlgebraType SUBPRODUCT

FREE

public static final SmallAlgebra.AlgebraType FREE

POLIN_LIKE

public static final SmallAlgebra.AlgebraType POLIN_LIKE

UNARY_TERMS_MONOID

public static final SmallAlgebra.AlgebraType UNARY_TERMS_MONOID
Method Detail

values

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

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

valueOf

public static SmallAlgebra.AlgebraType 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


Copyright 2003 Ralph Freese. All Rights Reserved.