Package com.vk.api.sdk.objects.enums
Enum GroupsWorkInfoStatus
- java.lang.Object
-
- java.lang.Enum<GroupsWorkInfoStatus>
-
- com.vk.api.sdk.objects.enums.GroupsWorkInfoStatus
-
- All Implemented Interfaces:
EnumParam,java.io.Serializable,java.lang.Comparable<GroupsWorkInfoStatus>
public enum GroupsWorkInfoStatus extends java.lang.Enum<GroupsWorkInfoStatus> implements EnumParam
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALWAYS_OPENEDFOREVER_CLOSEDNO_INFORMATIONTEMPORARILY_CLOSEDTIMETABLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()java.lang.StringtoString()static GroupsWorkInfoStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static GroupsWorkInfoStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALWAYS_OPENED
@SerializedName("always_opened") public static final GroupsWorkInfoStatus ALWAYS_OPENED
-
FOREVER_CLOSED
@SerializedName("forever_closed") public static final GroupsWorkInfoStatus FOREVER_CLOSED
-
NO_INFORMATION
@SerializedName("no_information") public static final GroupsWorkInfoStatus NO_INFORMATION
-
TEMPORARILY_CLOSED
@SerializedName("temporarily_closed") public static final GroupsWorkInfoStatus TEMPORARILY_CLOSED
-
TIMETABLE
@SerializedName("timetable") public static final GroupsWorkInfoStatus TIMETABLE
-
-
Method Detail
-
values
public static GroupsWorkInfoStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GroupsWorkInfoStatus c : GroupsWorkInfoStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GroupsWorkInfoStatus valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<GroupsWorkInfoStatus>
-
-