org.sat4j.minisat.core
Enum Lbool

java.lang.Object
  extended by java.lang.Enum<Lbool>
      extended by org.sat4j.minisat.core.Lbool
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Lbool>

public enum Lbool
extends java.lang.Enum<Lbool>

That enumeration defines the possible truth value for a variable: satisfied, falsified or unknown/undefined.

Author:
leberre

Enum Constant Summary
FALSE
           
TRUE
           
UNDEFINED
           
 
Method Summary
 Lbool not()
          boolean negation.
 java.lang.String toString()
          Textual representation for the truth value.
static Lbool valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Lbool[] 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

FALSE

public static final Lbool FALSE

TRUE

public static final Lbool TRUE

UNDEFINED

public static final Lbool UNDEFINED
Method Detail

values

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

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

valueOf

public static Lbool 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

not

public Lbool not()
boolean negation.

Returns:
Boolean negation. The negation of UNDEFINED is UNDEFINED.

toString

public java.lang.String toString()
Textual representation for the truth value.

Overrides:
toString in class java.lang.Enum<Lbool>
Returns:
"T","F" or "U"


Copyright © 2007 Centre de Recherche en Informatique de Lens (CRIL). All Rights Reserved.