@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class JoinColumn extends Object implements Serializable, Cloneable, StructuredPojo
Specifies a column to be joined.
Constructor and Description |
---|
JoinColumn() |
Modifier and Type | Method and Description |
---|---|
JoinColumn |
clone() |
boolean |
equals(Object obj) |
String |
getFrom()
The column to be joined.
|
List<List<String>> |
getKeys()
The key of the column to be joined.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setFrom(String from)
The column to be joined.
|
void |
setKeys(Collection<List<String>> keys)
The key of the column to be joined.
|
String |
toString()
Returns a string representation of this object.
|
JoinColumn |
withFrom(String from)
The column to be joined.
|
JoinColumn |
withKeys(Collection<List<String>> keys)
The key of the column to be joined.
|
JoinColumn |
withKeys(List<String>... keys)
The key of the column to be joined.
|
public void setFrom(String from)
The column to be joined.
from
- The column to be joined.public String getFrom()
The column to be joined.
public JoinColumn withFrom(String from)
The column to be joined.
from
- The column to be joined.public List<List<String>> getKeys()
The key of the column to be joined.
public void setKeys(Collection<List<String>> keys)
The key of the column to be joined.
keys
- The key of the column to be joined.public JoinColumn withKeys(List<String>... keys)
The key of the column to be joined.
NOTE: This method appends the values to the existing list (if any). Use
setKeys(java.util.Collection)
or withKeys(java.util.Collection)
if you want to override the
existing values.
keys
- The key of the column to be joined.public JoinColumn withKeys(Collection<List<String>> keys)
The key of the column to be joined.
keys
- The key of the column to be joined.public String toString()
toString
in class Object
Object.toString()
public JoinColumn clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.