choco.kernel.model.variables
Enum Operator

java.lang.Object
  extended by java.lang.Enum<Operator>
      extended by choco.kernel.model.variables.Operator
All Implemented Interfaces:
Serializable, Comparable<Operator>

public enum Operator
extends Enum<Operator>


Enum Constant Summary
ABS
           
COS
           
DISTANCEEQ
           
DISTANCEGT
           
DISTANCELT
           
DISTANCENEQ
           
DIV
           
IFTHENELSE
           
MAX
           
MIN
           
MINUS
           
MOD
           
MULT
           
NEG
           
NONE
           
PLUS
           
POWER
           
SCALAR
           
SIN
           
SUM
           
 
Field Summary
 String name
           
 int parameters
           
 String property
           
 
Method Summary
static Operator valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Operator[] 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

ABS

public static final Operator ABS

COS

public static final Operator COS

DISTANCEEQ

public static final Operator DISTANCEEQ

DISTANCEGT

public static final Operator DISTANCEGT

DISTANCELT

public static final Operator DISTANCELT

DISTANCENEQ

public static final Operator DISTANCENEQ

DIV

public static final Operator DIV

IFTHENELSE

public static final Operator IFTHENELSE

MINUS

public static final Operator MINUS

MAX

public static final Operator MAX

MIN

public static final Operator MIN

MOD

public static final Operator MOD

MULT

public static final Operator MULT

NEG

public static final Operator NEG

NONE

public static final Operator NONE

PLUS

public static final Operator PLUS

POWER

public static final Operator POWER

SCALAR

public static final Operator SCALAR

SIN

public static final Operator SIN

SUM

public static final Operator SUM
Field Detail

name

public final String name

property

public final String property

parameters

public final int parameters
Method Detail

values

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

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

valueOf

public static Operator 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 © 2012. All Rights Reserved.