Package org.castor.cpa.query
Interface InCondition
-
- All Superinterfaces:
Condition
,QueryObject
- All Known Implementing Classes:
In
public interface InCondition extends Condition
Interface for InCondition of query objects.- Since:
- 1.3
- Version:
- $Revision: 7121 $ $Date: 2006-04-25 16:09:10 -0600 (Tue, 25 Apr 2006) $
- Author:
- Udai Gupta, Ralf Joachim
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(boolean value)
Adds the.void
add(double value)
Adds the.void
add(long value)
Adds the.void
add(java.lang.Enum<?> value)
Adds the.void
add(java.lang.String value)
Adds the.void
add(java.math.BigDecimal value)
Adds the.void
add(Literal value)
Adds the.void
add(Parameter value)
Adds the.-
Methods inherited from interface org.castor.cpa.query.QueryObject
toString
-
-
-
-
Method Detail
-
add
void add(boolean value)
Adds the.- Parameters:
value
- the value
-
add
void add(long value)
Adds the.- Parameters:
value
- the value
-
add
void add(double value)
Adds the.- Parameters:
value
- the value
-
add
void add(java.math.BigDecimal value)
Adds the.- Parameters:
value
- the value
-
add
void add(java.lang.String value)
Adds the.- Parameters:
value
- the value
-
add
void add(java.lang.Enum<?> value)
Adds the.- Parameters:
value
- the value
-
add
void add(Literal value)
Adds the.- Parameters:
value
- the value
-
add
void add(Parameter value)
Adds the.- Parameters:
value
- the value
-
-