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 CharacterSet
clone()
boolean
equals(Object obj)
String
getCharacterSetDescription()
The description of the character set.String
getCharacterSetName()
The name of the character set.int
hashCode()
void
setCharacterSetDescription(String characterSetDescription)
The description of the character set.void
setCharacterSetName(String characterSetName)
The name of the character set.String
toString()
Returns a string representation of this object; useful for testing and debugging.CharacterSet
withCharacterSetDescription(String characterSetDescription)
The description of the character set.CharacterSet
withCharacterSetName(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public CharacterSet clone()
-
-