Extension SDK 10.1.2

Uses of Class
oracle.ide.util.TriStateBoolean

Packages that use TriStateBoolean
oracle.ide.util Contains utility classes. 
 

Uses of TriStateBoolean in oracle.ide.util
 

Fields in oracle.ide.util declared as TriStateBoolean
static TriStateBoolean TriStateBoolean.TRUE
          TRUE corresponds to a typical Boolean true.
static TriStateBoolean TriStateBoolean.TRI_STATE
          TRI_STATE represents the tri-state.
static TriStateBoolean TriStateBoolean.FALSE
          FALSE corresponds to a typical Boolean FALSE.
static TriStateBoolean TriStateBoolean.UNDEF
          Special TriStateBoolean object representing an uninitialized value.
 

Methods in oracle.ide.util that return TriStateBoolean
static TriStateBoolean TriStateBoolean.getState(boolean state)
           
static TriStateBoolean TriStateBoolean.getState(java.lang.Boolean state)
           
 TriStateBoolean TriStateBoolean.toggle()
          This method defines the "toggle" operation as follows: Toggling TRUE returns FALSE.
 TriStateBoolean TriStateBoolean.aggregate(TriStateBoolean b)
          This method is used to help determine if a set of TriStateBoolean values are all the same or have some difference.
 TriStateBoolean TriStateBoolean.and(TriStateBoolean b)
           AND true false tri true true false tri false false false tri tri tri tri tri
Truth table for tri-state AND operator
 TriStateBoolean TriStateBoolean.or(TriStateBoolean b)
           OR true false tri true true true tri false true false tri tri tri tri tri
Truth table for tri-state OR operator
 TriStateBoolean TriStateBoolean.not()
          NOT true => false.
NOT false => true.
NOT tri => tri.
 

Methods in oracle.ide.util with parameters of type TriStateBoolean
 TriStateBoolean TriStateBoolean.aggregate(TriStateBoolean b)
          This method is used to help determine if a set of TriStateBoolean values are all the same or have some difference.
 TriStateBoolean TriStateBoolean.and(TriStateBoolean b)
           AND true false tri true true false tri false false false tri tri tri tri tri
Truth table for tri-state AND operator
 TriStateBoolean TriStateBoolean.or(TriStateBoolean b)
           OR true false tri true true true tri false true false tri tri tri tri tri
Truth table for tri-state OR operator
 


Extension SDK

 

Copyright © 1997, 2004, Oracle. All rights reserved.