Enum ClientVideoOptions.ClientVideoOptionsVideoMode
- java.lang.Object
-
- java.lang.Enum<ClientVideoOptions.ClientVideoOptionsVideoMode>
-
- de.extio.spacecraft.shared.model.client.options.ClientVideoOptions.ClientVideoOptionsVideoMode
-
- All Implemented Interfaces:
Serializable
,Comparable<ClientVideoOptions.ClientVideoOptionsVideoMode>
- Enclosing class:
- ClientVideoOptions
public static enum ClientVideoOptions.ClientVideoOptionsVideoMode extends Enum<ClientVideoOptions.ClientVideoOptionsVideoMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BORDERLESS
FULLSCREEN
WINDOW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClientVideoOptions.ClientVideoOptionsVideoMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static ClientVideoOptions.ClientVideoOptionsVideoMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WINDOW
public static final ClientVideoOptions.ClientVideoOptionsVideoMode WINDOW
-
BORDERLESS
public static final ClientVideoOptions.ClientVideoOptionsVideoMode BORDERLESS
-
FULLSCREEN
public static final ClientVideoOptions.ClientVideoOptionsVideoMode FULLSCREEN
-
-
Method Detail
-
values
public static ClientVideoOptions.ClientVideoOptionsVideoMode[] 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 (ClientVideoOptions.ClientVideoOptionsVideoMode c : ClientVideoOptions.ClientVideoOptionsVideoMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClientVideoOptions.ClientVideoOptionsVideoMode 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
-
-