Uses of Class
org.jpop.util.Bool

Packages that use Bool
org.jpop.util   
 

Uses of Bool in org.jpop.util
 

Fields in org.jpop.util declared as Bool
static Bool Bool.TRUE
          Bool representation of true
static Bool Bool.FALSE
          Bool representation of false
 

Methods in org.jpop.util that return Bool
static Bool Bool.valueOf(java.lang.String s)
          Makes a Bool with the value of the string s
static Bool Bool.valueOf(boolean b)
          Makes a Bool with the value of the boolean b
 

Methods in org.jpop.util with parameters of type Bool
static boolean Bool.not(Bool b)
          Perform a logic not operation on b (same as !b)
static boolean Bool.and(boolean a, Bool b)
          Performs a logic and operation on a and b (Same as a && b)
static boolean Bool.and(Bool a, boolean b)
          Performs a logic and operation on a and b (Same as a && b)
static boolean Bool.and(Bool a, Bool b)
          Performs a logic and operation on a and b (Same as a && b)
static boolean Bool.and(Bool a, java.lang.Boolean b)
          Performs a logic and operation on a and b (Same as a && b)
static boolean Bool.and(java.lang.Boolean a, Bool b)
          Performs a logic and operation on a and b (Same as a && b)
static boolean Bool.or(boolean a, Bool b)
          Performs a logic or operation on a and b (Same as a || b)
static boolean Bool.or(Bool a, boolean b)
          Performs a logic or operation on a and b (Same as a || b)
static boolean Bool.or(Bool a, Bool b)
          Performs a logic or operation on a and b (Same as a || b)
static boolean Bool.or(Bool a, java.lang.Boolean b)
          Performs a logic or operation on a and b (Same as a || b)
static boolean Bool.or(java.lang.Boolean a, Bool b)
          Performs a logic or operation on a and b (Same as a || b)
static boolean Bool.xor(boolean a, Bool b)
          Performs an eXclusive or operation on a and b
static boolean Bool.xor(Bool a, boolean b)
          Performs an eXclusive or operation on a and b
static boolean Bool.xor(Bool a, Bool b)
          Performs an eXclusive or operation on a and b
static boolean Bool.xor(Bool a, java.lang.Boolean b)
          Performs an eXclusive or operation on a and b
static boolean Bool.xor(java.lang.Boolean a, Bool b)
          Performs an eXclusive or operation on a and b
static boolean Bool.nand(boolean a, Bool b)
          Performs a nand operation on a and b
static boolean Bool.nand(Bool a, boolean b)
          Performs a nand operation on a and b
static boolean Bool.nand(Bool a, Bool b)
          Performs a nand operation on a and b
static boolean Bool.nand(Bool a, java.lang.Boolean b)
          Performs a nand operation on a and b
static boolean Bool.nand(java.lang.Boolean a, Bool b)
          Performs a nand operation on a and b
static boolean Bool.nor(boolean a, Bool b)
          Performs a nor operation on a and b
static boolean Bool.nor(Bool a, boolean b)
          Performs a nor operation on a and b
static boolean Bool.nor(Bool a, Bool b)
          Performs a nor operation on a and b
static boolean Bool.nor(Bool a, java.lang.Boolean b)
          Performs a nor operation on a and b
static boolean Bool.nor(java.lang.Boolean a, Bool b)
          Performs a nor operation on a and b
static boolean Bool.implies(boolean a, Bool b)
          Performs an implies ( --> ) operation on a and b
static boolean Bool.implies(Bool a, boolean b)
          Performs an implies ( --> ) operation on a and b
static boolean Bool.implies(Bool a, Bool b)
          Performs an implies ( --> ) operation on a and b
static boolean Bool.implies(Bool a, java.lang.Boolean b)
          Performs an implies ( --> ) operation on a and b
static boolean Bool.implies(java.lang.Boolean a, Bool b)
          Performs an implies ( --> ) operation on a and b
 boolean Bool.or(Bool b)
          Performs a logic or operation on the object with b (Same as this || b)
 boolean Bool.and(Bool b)
          Performs a logic and operation on the object with b (Same as this && b)
 boolean Bool.xor(Bool b)
          Performs an eXclusive or operation on the object and b
 boolean Bool.nand(Bool b)
          Performs a nand operation on the object and b
 boolean Bool.nor(Bool b)
          Performs a nor operation on the object and b
 boolean Bool.implies(Bool b)
          Performs an implies ( --> ) operation on the object and b