il2.inf
Enum Algorithm.Query

Object
  extended by Enum<Algorithm.Query>
      extended by Algorithm.Query
All Implemented Interfaces:
Serializable, Comparable<Algorithm.Query>
Enclosing class:
Algorithm

public static enum Algorithm.Query
extends Enum<Algorithm.Query>

kind of query that an inference engine might support


Enum Constant Summary
map
           
marginal
           
mpe
           
partialderivative
           
probabilityofevidence
           
 
Field Summary
static Set<Algorithm.Query> DEFAULT
           
 
Method Summary
static Algorithm.Query valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Algorithm.Query[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

probabilityofevidence

public static final Algorithm.Query probabilityofevidence

marginal

public static final Algorithm.Query marginal

mpe

public static final Algorithm.Query mpe

map

public static final Algorithm.Query map

partialderivative

public static final Algorithm.Query partialderivative
Field Detail

DEFAULT

public static final Set<Algorithm.Query> DEFAULT
Method Detail

values

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

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

valueOf

public static Algorithm.Query 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


Copyright 2010 UCLA Automated Reasoning Group