Package com.amazonaws.services.rds.model
Class Filter
- java.lang.Object
-
- com.amazonaws.services.rds.model.Filter
-
- All Implemented Interfaces:
Serializable,Cloneable
public class Filter extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Filter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Filterclone()booleanequals(Object obj)StringgetName()This parameter is not currently supported.List<String>getValues()This parameter is not currently supported.inthashCode()voidsetName(String name)This parameter is not currently supported.voidsetValues(Collection<String> values)This parameter is not currently supported.StringtoString()Returns a string representation of this object; useful for testing and debugging.FilterwithName(String name)This parameter is not currently supported.FilterwithValues(String... values)This parameter is not currently supported.FilterwithValues(Collection<String> values)This parameter is not currently supported.
-
-
-
Method Detail
-
setName
public void setName(String name)
This parameter is not currently supported.
- Parameters:
name- This parameter is not currently supported.
-
getName
public String getName()
This parameter is not currently supported.
- Returns:
- This parameter is not currently supported.
-
withName
public Filter withName(String name)
This parameter is not currently supported.
- Parameters:
name- This parameter is not currently supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getValues
public List<String> getValues()
This parameter is not currently supported.
- Returns:
- This parameter is not currently supported.
-
setValues
public void setValues(Collection<String> values)
This parameter is not currently supported.
- Parameters:
values- This parameter is not currently supported.
-
withValues
public Filter withValues(String... values)
This parameter is not currently supported.
NOTE: This method appends the values to the existing list (if any). Use
setValues(java.util.Collection)orwithValues(java.util.Collection)if you want to override the existing values.- Parameters:
values- This parameter is not currently supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withValues
public Filter withValues(Collection<String> values)
This parameter is not currently supported.
- Parameters:
values- This parameter is not currently supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
-