|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.taleo.integration.client.customstep.velocity.LogicTool
public class LogicTool
Class to expose Logic functions into Velocity templates.
Constructor Summary | |
---|---|
LogicTool()
|
Method Summary | |
---|---|
boolean |
and(boolean lhs,
boolean rhs)
Combine two boolean arguments with a logical And operator. |
boolean |
equals(java.lang.Comparable lhs,
java.lang.Comparable rhs)
Test two Comparable arguments for equality. |
boolean |
greaterThan(java.lang.Comparable lhs,
java.lang.Comparable rhs)
Test two Comparable arguments for "greater than". |
boolean |
greaterThanOrEqual(java.lang.Comparable lhs,
java.lang.Comparable rhs)
Test two Comparable arguments for "greater than or equal". |
boolean |
lessThan(java.lang.Comparable lhs,
java.lang.Comparable rhs)
Test two Comparable arguments for "less than". |
boolean |
lessThanOrEqual(java.lang.Comparable lhs,
java.lang.Comparable rhs)
Test two Comparable arguments for "less than or equal". |
boolean |
not(boolean bool)
Not operator. |
boolean |
or(boolean lhs,
boolean rhs)
Combine two boolean arguments with a logical Or operator. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public LogicTool()
Method Detail |
---|
public boolean equals(java.lang.Comparable lhs, java.lang.Comparable rhs)
lhs
- The left hand side argument.rhs
- The right hand side argument.
public boolean lessThan(java.lang.Comparable lhs, java.lang.Comparable rhs)
lhs
- The left hand side argument.rhs
- The right hand side argument.
public boolean lessThanOrEqual(java.lang.Comparable lhs, java.lang.Comparable rhs)
lhs
- The left hand side argument.rhs
- The right hand side argument.
public boolean greaterThan(java.lang.Comparable lhs, java.lang.Comparable rhs)
lhs
- The left hand side argument.rhs
- The right hand side argument.
public boolean greaterThanOrEqual(java.lang.Comparable lhs, java.lang.Comparable rhs)
lhs
- The left hand side argument.rhs
- The right hand side argument.
public boolean and(boolean lhs, boolean rhs)
lhs
- The left hand side argument.rhs
- The right hand side argument.
public boolean or(boolean lhs, boolean rhs)
lhs
- The left hand side argument.rhs
- The right hand side argument.
public boolean not(boolean bool)
bool
- The boolean argument.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |