1 21 22 package org.apache.derby.iapi.types; 23 24 import org.apache.derby.iapi.error.StandardException; 25 26 public interface BooleanDataValue extends DataValueDescriptor 27 { 28 public boolean getBoolean(); 29 30 39 public BooleanDataValue and(BooleanDataValue otherValue); 40 41 50 public BooleanDataValue or(BooleanDataValue otherValue); 51 52 71 public BooleanDataValue is(BooleanDataValue otherValue); 72 73 82 public BooleanDataValue isNot(BooleanDataValue otherValue); 83 84 100 public BooleanDataValue throwExceptionIfFalse( 101 String SQLState, 102 String tableName, 103 String constraintName) 104 throws StandardException; 105 106 110 111 117 public void setValue(Boolean theValue); 118 119 127 public boolean equals(boolean value); 128 129 133 public BooleanDataValue getImmutable(); 134 } 135 | Popular Tags |