|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.atlassian.query.operand.Operands
public final class Operands
Factory class for creating operands.
Method Summary | |
---|---|
protected Object |
clone()
|
static Operand |
getEmpty()
Return an operand that represents the JQL EMPTY value. |
static Operand |
valueOf(Long... values)
Create an operands that represents a list of passed numbers. |
static Operand |
valueOf(Long value)
Create an operand that represents the passed number. |
static Operand |
valueOf(Operand... operands)
Create an operand that represents a list of the passed operands. |
static Operand |
valueOf(String... values)
Create an operands that represents a list of passed string values. |
static Operand |
valueOf(String value)
Create an operand that represents the passed string. |
static Operand |
valueOfNumbers(Collection<Long> values)
Create an operands that represents a list of passed numbers. |
static Operand |
valueOfOperands(Collection<Operand> operands)
Create an operand that represents a list of the passed operands. |
static Operand |
valueOfStrings(Collection<String> values)
Create an operands that represents a list of passed string values. |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
protected Object clone() throws CloneNotSupportedException
clone
in class Object
CloneNotSupportedException
public static Operand valueOf(String value)
value
- the value to wrap as an operand. Cannot be null.
public static Operand valueOf(String... values)
values
- the list of values to represent. Cannot be null, empty or contain any null values.
public static Operand valueOfStrings(Collection<String> values)
values
- the list of values to represent. Cannot be null, empty or contain any null values.
public static Operand valueOf(Long value)
value
- the value to wrap as an operand. Cannot be null.
public static Operand valueOf(Long... values)
values
- the list of values to represent. Cannot be null, empty or contain any null values.
public static Operand valueOfNumbers(Collection<Long> values)
values
- the list of values to represent. Cannot be null, empty or contain any null values.
public static Operand valueOf(Operand... operands)
operands
- the list of value to convert. Cannot be null, empty or contain any null values.
public static Operand valueOfOperands(Collection<Operand> operands)
operands
- the list of value to convert. Cannot be null, empty or contain any null values.
public static Operand getEmpty()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |