public final class SpaceStatistics
extends Object
| Constructor and Description |
|---|
SpaceStatistics(long id,
String name,
long administratorCount,
long memberCount,
boolean isPrivate,
boolean isGuest,
User creator,
ZonedDateTime createdAt,
User modifier,
ZonedDateTime modifiedAt)
Creates a new
SpaceStatistics instance. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
long |
getAdministratorCount()
The number of administrators of the Space.
|
ZonedDateTime |
getCreatedAt()
The created date time of the Space.
|
User |
getCreator()
An object containing information of the creator of the Space.
|
long |
getId()
The Space ID.
|
long |
getMemberCount()
The number of members of the Space.
|
ZonedDateTime |
getModifiedAt()
The updated date time of the Space.
|
User |
getModifier()
An object containing information of the updater of the Space.
|
String |
getName()
The name of the Space.
|
int |
hashCode() |
boolean |
isGuest()
The Guest Space setting.
|
boolean |
isPrivate()
The "Private" settings of the Space.
|
String |
toString() |
@ConstructorProperties(value={"id","name","administratorCount","memberCount","isPrivate","isGuest","creator","createdAt","modifier","modifiedAt"})
public SpaceStatistics(long id,
String name,
long administratorCount,
long memberCount,
boolean isPrivate,
boolean isGuest,
User creator,
ZonedDateTime createdAt,
User modifier,
ZonedDateTime modifiedAt)
SpaceStatistics instance.id - The Space ID.name - The name of the Space.administratorCount - The number of administrators of the Space.memberCount - The number of members of the Space.isPrivate - The "Private" settings of the Space.isGuest - The Guest Space setting.creator - An object containing information of the creator of the Space.createdAt - The created date time of the Space.modifier - An object containing information of the updater of the Space.modifiedAt - The updated date time of the Space.public long getId()
public String getName()
public long getAdministratorCount()
public long getMemberCount()
public boolean isPrivate()
public boolean isGuest()
public User getCreator()
public ZonedDateTime getCreatedAt()
public User getModifier()
public ZonedDateTime getModifiedAt()
public boolean equals(Object o)
equals in class Objectpublic int hashCode()
hashCode in class Objectpublic String toString()
toString in class Object