Package com.restfb.types.threads
Enum TdReply.TdHideStatus
- java.lang.Object
-
- java.lang.Enum<TdReply.TdHideStatus>
-
- com.restfb.types.threads.TdReply.TdHideStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<TdReply.TdHideStatus>
- Enclosing class:
- TdReply
public static enum TdReply.TdHideStatus extends Enum<TdReply.TdHideStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLOCKED
COVERED
HIDDEN
NOT_HUSHED
RESTRICTED
UNHUSHED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TdReply.TdHideStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static TdReply.TdHideStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_HUSHED
public static final TdReply.TdHideStatus NOT_HUSHED
-
UNHUSHED
public static final TdReply.TdHideStatus UNHUSHED
-
HIDDEN
public static final TdReply.TdHideStatus HIDDEN
-
COVERED
public static final TdReply.TdHideStatus COVERED
-
BLOCKED
public static final TdReply.TdHideStatus BLOCKED
-
RESTRICTED
public static final TdReply.TdHideStatus RESTRICTED
-
-
Method Detail
-
values
public static TdReply.TdHideStatus[] 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 (TdReply.TdHideStatus c : TdReply.TdHideStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TdReply.TdHideStatus valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-