@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class RowFilter extends Object implements Serializable, Cloneable, StructuredPojo
The row filter.
Constructor and Description |
---|
RowFilter() |
Modifier and Type | Method and Description |
---|---|
RowFilter |
clone() |
boolean |
equals(Object obj) |
List<RowFilter> |
getAnd()
The 'and' clause of the row filter.
|
RowFilterExpression |
getExpression()
The expression of the row filter.
|
List<RowFilter> |
getOr()
The 'or' clause of the row filter.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setAnd(Collection<RowFilter> and)
The 'and' clause of the row filter.
|
void |
setExpression(RowFilterExpression expression)
The expression of the row filter.
|
void |
setOr(Collection<RowFilter> or)
The 'or' clause of the row filter.
|
String |
toString()
Returns a string representation of this object.
|
RowFilter |
withAnd(Collection<RowFilter> and)
The 'and' clause of the row filter.
|
RowFilter |
withAnd(RowFilter... and)
The 'and' clause of the row filter.
|
RowFilter |
withExpression(RowFilterExpression expression)
The expression of the row filter.
|
RowFilter |
withOr(Collection<RowFilter> or)
The 'or' clause of the row filter.
|
RowFilter |
withOr(RowFilter... or)
The 'or' clause of the row filter.
|
public List<RowFilter> getAnd()
The 'and' clause of the row filter.
public void setAnd(Collection<RowFilter> and)
The 'and' clause of the row filter.
and
- The 'and' clause of the row filter.public RowFilter withAnd(RowFilter... and)
The 'and' clause of the row filter.
NOTE: This method appends the values to the existing list (if any). Use
setAnd(java.util.Collection)
or withAnd(java.util.Collection)
if you want to override the
existing values.
and
- The 'and' clause of the row filter.public RowFilter withAnd(Collection<RowFilter> and)
The 'and' clause of the row filter.
and
- The 'and' clause of the row filter.public void setExpression(RowFilterExpression expression)
The expression of the row filter.
expression
- The expression of the row filter.public RowFilterExpression getExpression()
The expression of the row filter.
public RowFilter withExpression(RowFilterExpression expression)
The expression of the row filter.
expression
- The expression of the row filter.public List<RowFilter> getOr()
The 'or' clause of the row filter.
public void setOr(Collection<RowFilter> or)
The 'or' clause of the row filter.
or
- The 'or' clause of the row filter.public RowFilter withOr(RowFilter... or)
The 'or' clause of the row filter.
NOTE: This method appends the values to the existing list (if any). Use
setOr(java.util.Collection)
or withOr(java.util.Collection)
if you want to override the
existing values.
or
- The 'or' clause of the row filter.public RowFilter withOr(Collection<RowFilter> or)
The 'or' clause of the row filter.
or
- The 'or' clause of the row filter.public String toString()
toString
in class Object
Object.toString()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.