Esempio n. 1
0
 /* Logical boolean "XOR" function, if values are different then result is true, otherwise false.
  */
 public static SchemaBoolean logicalXor(SchemaType value1, SchemaType value2) {
   return new SchemaBoolean(value1.booleanValue() ^ value2.booleanValue());
 }