public class Container extends Object implements Comparable<Container>
Modifier and Type | Class and Description |
---|---|
static class |
Container.Builder |
Modifier and Type | Field and Description |
---|---|
protected int |
bytes |
protected int |
count |
protected String |
name |
Modifier | Constructor and Description |
---|---|
protected |
Container(String name,
int count,
int bytes) |
Modifier and Type | Method and Description |
---|---|
static Container.Builder |
builder() |
int |
compareTo(Container that) |
boolean |
equals(Object object) |
int |
getBytes() |
int |
getCount() |
String |
getName() |
int |
hashCode() |
protected com.google.common.base.Objects.ToStringHelper |
string() |
Container.Builder |
toBuilder() |
String |
toString() |
protected String name
protected int count
protected int bytes
@ConstructorProperties(value={"name","count","bytes"}) protected Container(String name, int count, int bytes)
public static Container.Builder builder()
public Container.Builder toBuilder()
public String getName()
public int getCount()
public int getBytes()
protected com.google.common.base.Objects.ToStringHelper string()
public int compareTo(Container that)
compareTo
in interface Comparable<Container>
Copyright © 2009-2013 jclouds. All Rights Reserved.