public class ListDeliveryStreamsResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Contains the output of ListDeliveryStreams.
Modifier and Type | Field and Description |
---|---|
private java.util.List<java.lang.String> |
deliveryStreamNames
The names of the delivery streams.
|
private java.lang.Boolean |
hasMoreDeliveryStreams
Indicates whether there are more delivery streams available to list.
|
Constructor and Description |
---|
ListDeliveryStreamsResult() |
Modifier and Type | Method and Description |
---|---|
ListDeliveryStreamsResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.List<java.lang.String> |
getDeliveryStreamNames()
The names of the delivery streams.
|
java.lang.Boolean |
getHasMoreDeliveryStreams()
Indicates whether there are more delivery streams available to list.
|
int |
hashCode() |
java.lang.Boolean |
isHasMoreDeliveryStreams()
Indicates whether there are more delivery streams available to list.
|
void |
setDeliveryStreamNames(java.util.Collection<java.lang.String> deliveryStreamNames)
The names of the delivery streams.
|
void |
setHasMoreDeliveryStreams(java.lang.Boolean hasMoreDeliveryStreams)
Indicates whether there are more delivery streams available to list.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListDeliveryStreamsResult |
withDeliveryStreamNames(java.util.Collection<java.lang.String> deliveryStreamNames)
The names of the delivery streams.
|
ListDeliveryStreamsResult |
withDeliveryStreamNames(java.lang.String... deliveryStreamNames)
The names of the delivery streams.
|
ListDeliveryStreamsResult |
withHasMoreDeliveryStreams(java.lang.Boolean hasMoreDeliveryStreams)
Indicates whether there are more delivery streams available to list.
|
private java.util.List<java.lang.String> deliveryStreamNames
The names of the delivery streams.
private java.lang.Boolean hasMoreDeliveryStreams
Indicates whether there are more delivery streams available to list.
public java.util.List<java.lang.String> getDeliveryStreamNames()
The names of the delivery streams.
public void setDeliveryStreamNames(java.util.Collection<java.lang.String> deliveryStreamNames)
The names of the delivery streams.
deliveryStreamNames
- The names of the delivery streams.public ListDeliveryStreamsResult withDeliveryStreamNames(java.lang.String... deliveryStreamNames)
The names of the delivery streams.
NOTE: This method appends the values to the existing list (if
any). Use setDeliveryStreamNames(java.util.Collection)
or
withDeliveryStreamNames(java.util.Collection)
if you want to
override the existing values.
deliveryStreamNames
- The names of the delivery streams.public ListDeliveryStreamsResult withDeliveryStreamNames(java.util.Collection<java.lang.String> deliveryStreamNames)
The names of the delivery streams.
deliveryStreamNames
- The names of the delivery streams.public void setHasMoreDeliveryStreams(java.lang.Boolean hasMoreDeliveryStreams)
Indicates whether there are more delivery streams available to list.
hasMoreDeliveryStreams
- Indicates whether there are more delivery streams available to
list.public java.lang.Boolean getHasMoreDeliveryStreams()
Indicates whether there are more delivery streams available to list.
public ListDeliveryStreamsResult withHasMoreDeliveryStreams(java.lang.Boolean hasMoreDeliveryStreams)
Indicates whether there are more delivery streams available to list.
hasMoreDeliveryStreams
- Indicates whether there are more delivery streams available to
list.public java.lang.Boolean isHasMoreDeliveryStreams()
Indicates whether there are more delivery streams available to list.
public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public ListDeliveryStreamsResult clone()
clone
in class java.lang.Object