Package org.jclouds.s3.domain
Class DeleteResult
- java.lang.Object
-
- com.google.common.collect.ForwardingObject
-
- com.google.common.collect.ForwardingCollection<E>
-
- com.google.common.collect.ForwardingSet<String>
-
- org.jclouds.s3.domain.DeleteResult
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DeleteResult.Builder
static class
DeleteResult.Error
-
Constructor Summary
Constructors Constructor Description DeleteResult(Set<String> deleted, Map<String,DeleteResult.Error> errors)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeleteResult.Builder
builder()
protected Set<String>
delegate()
boolean
equals(Object o)
Set<String>
getDeleted()
Get the set of successfully deleted keysMap<String,DeleteResult.Error>
getErrors()
Get a map with details about failed delete operations indexed by object nameint
hashCode()
DeleteResult.Builder
toBuilder()
String
toString()
-
Methods inherited from class com.google.common.collect.ForwardingSet
standardEquals, standardHashCode, standardRemoveAll
-
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, 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
-
-
-
-
Constructor Detail
-
DeleteResult
public DeleteResult(Set<String> deleted, Map<String,DeleteResult.Error> errors)
-
-
Method Detail
-
builder
public static DeleteResult.Builder builder()
-
toBuilder
public DeleteResult.Builder toBuilder()
-
getErrors
public Map<String,DeleteResult.Error> getErrors()
Get a map with details about failed delete operations indexed by object name
-
delegate
protected Set<String> delegate()
- Specified by:
delegate
in classcom.google.common.collect.ForwardingSet<String>
-
equals
public boolean equals(Object o)
-
hashCode
public int hashCode()
-
toString
public String toString()
- Overrides:
toString
in classcom.google.common.collect.ForwardingObject
-
-