Package com.amazonaws.services.rds.model
Class CharacterSet
- java.lang.Object
-
- com.amazonaws.services.rds.model.CharacterSet
-
- All Implemented Interfaces:
Serializable,Cloneable
public class CharacterSet extends Object implements Serializable, Cloneable
This data type is used as a response element in the action DescribeDBEngineVersions.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CharacterSet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CharacterSetclone()booleanequals(Object obj)StringgetCharacterSetDescription()The description of the character set.StringgetCharacterSetName()The name of the character set.inthashCode()voidsetCharacterSetDescription(String characterSetDescription)The description of the character set.voidsetCharacterSetName(String characterSetName)The name of the character set.StringtoString()Returns a string representation of this object; useful for testing and debugging.CharacterSetwithCharacterSetDescription(String characterSetDescription)The description of the character set.CharacterSetwithCharacterSetName(String characterSetName)The name of the character set.
-
-
-
Method Detail
-
setCharacterSetName
public void setCharacterSetName(String characterSetName)
The name of the character set.
- Parameters:
characterSetName- The name of the character set.
-
getCharacterSetName
public String getCharacterSetName()
The name of the character set.
- Returns:
- The name of the character set.
-
withCharacterSetName
public CharacterSet withCharacterSetName(String characterSetName)
The name of the character set.
- Parameters:
characterSetName- The name of the character set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCharacterSetDescription
public void setCharacterSetDescription(String characterSetDescription)
The description of the character set.
- Parameters:
characterSetDescription- The description of the character set.
-
getCharacterSetDescription
public String getCharacterSetDescription()
The description of the character set.
- Returns:
- The description of the character set.
-
withCharacterSetDescription
public CharacterSet withCharacterSetDescription(String characterSetDescription)
The description of the character set.
- Parameters:
characterSetDescription- The description of the character set.- 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()
-
clone
public CharacterSet clone()
-
-