Package org.openhab.core.library.types
Enum Class PlayPauseType
- All Implemented Interfaces:
Serializable
,Comparable<PlayPauseType>
,Constable
,Command
,PrimitiveType
,State
,Type
@NonNullByDefault
public enum PlayPauseType
extends Enum<PlayPauseType>
implements PrimitiveType, State, Command
This type is used by the
PlayerItem
.- Author:
- Alex Tugarev - Initial contribution
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionFormats the value of this type according to a pattern (seeFormatter
).Get a string representation that contains the whole internal representation of the type.toString()
static PlayPauseType
Returns the enum constant of this class with the specified name.static PlayPauseType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PLAY
-
PAUSE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
format
Description copied from interface:Type
Formats the value of this type according to a pattern (seeFormatter
). -
toString
- Overrides:
toString
in classEnum<PlayPauseType>
-
toFullString
Description copied from interface:Type
Get a string representation that contains the whole internal representation of the type.The returned string could be consumed by the static 'valueOf(String)' method of the respective type to build a new type that is equal to this type.
- Specified by:
toFullString
in interfaceType
- Returns:
- a full string representation of the type to be consumed by 'valueOf(String)'
-