public enum PollStatus extends java.lang.Enum<PollStatus>
Enum Constant and Description |
---|
ALL
All activities, with and without poll
|
WITH_POLL
All activities with poll
|
WITH_POLL_NOT_VOTED_BY_ME
Not voted by current user
|
WITH_POLL_VOTED_BY_ME
Voted by current user
|
WITHOUT_POLL
All activities without poll
|
Modifier and Type | Method and Description |
---|---|
static PollStatus |
findByValue(int rawValue) |
int |
getValue() |
static PollStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PollStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PollStatus ALL
public static final PollStatus WITH_POLL
public static final PollStatus WITH_POLL_VOTED_BY_ME
public static final PollStatus WITH_POLL_NOT_VOTED_BY_ME
public static final PollStatus WITHOUT_POLL
public static PollStatus[] values()
for (PollStatus c : PollStatus.values()) System.out.println(c);
public static PollStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static PollStatus findByValue(int rawValue)
public int getValue()
(c) Copyright GetSocial BV, 2022. All Rights Reserved.