Package org.jclouds.dynect.v3.domain
Class RecordSet
- java.lang.Object
-
- com.google.common.collect.ForwardingObject
-
- com.google.common.collect.ForwardingCollection<E>
-
- com.google.common.collect.ForwardingList<RecordSet.Value>
-
- org.jclouds.dynect.v3.domain.RecordSet
-
- All Implemented Interfaces:
Iterable<RecordSet.Value>
,Collection<RecordSet.Value>
,List<RecordSet.Value>
public class RecordSet extends com.google.common.collect.ForwardingList<RecordSet.Value>
A set of records which shared the same name, type, and ttl
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RecordSet.Builder
static class
RecordSet.Value
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RecordSet.Builder
builder()
protected List<RecordSet.Value>
delegate()
boolean
equals(Object obj)
int
getTTL()
String
getType()
int
hashCode()
RecordSet.Builder
toBuilder()
String
toString()
-
Methods inherited from class com.google.common.collect.ForwardingList
add, addAll, get, indexOf, lastIndexOf, listIterator, listIterator, remove, set, standardAdd, standardAddAll, standardEquals, standardHashCode, standardIndexOf, standardIterator, standardLastIndexOf, standardListIterator, standardListIterator, standardSubList, subList
-
Methods inherited from class com.google.common.collect.ForwardingCollection
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, standardAddAll, standardClear, standardContains, standardContainsAll, standardIsEmpty, standardRemove, standardRemoveAll, standardRetainAll, standardToArray, standardToArray, standardToString, toArray, toArray
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
-
-
-
Method Detail
-
getType
public String getType()
- See Also:
RecordId.getType()
-
getTTL
public int getTTL()
- See Also:
Record.getTTL()
-
hashCode
public int hashCode()
- Specified by:
hashCode
in interfaceCollection<RecordSet.Value>
- Specified by:
hashCode
in interfaceList<RecordSet.Value>
- Overrides:
hashCode
in classcom.google.common.collect.ForwardingList<RecordSet.Value>
-
equals
public boolean equals(Object obj)
- Specified by:
equals
in interfaceCollection<RecordSet.Value>
- Specified by:
equals
in interfaceList<RecordSet.Value>
- Overrides:
equals
in classcom.google.common.collect.ForwardingList<RecordSet.Value>
-
toString
public String toString()
- Overrides:
toString
in classcom.google.common.collect.ForwardingObject
-
builder
public static RecordSet.Builder builder()
-
toBuilder
public RecordSet.Builder toBuilder()
-
delegate
protected List<RecordSet.Value> delegate()
- Specified by:
delegate
in classcom.google.common.collect.ForwardingList<RecordSet.Value>
-
-