Package odata.msgraph.client.beta.enums
Enum MiracastChannel
- java.lang.Object
-
- java.lang.Enum<MiracastChannel>
-
- odata.msgraph.client.beta.enums.MiracastChannel
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<MiracastChannel>
public enum MiracastChannel extends Enum<MiracastChannel> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EIGHTELEVENFIVEFORTYFORTY_EIGHTFORTY_FOURFOURNINEONEONE_HUNDRED_FIFTY_SEVENONE_HUNDRED_FIFTY_THREEONE_HUNDRED_FORTY_NINEONE_HUNDRED_SIXTY_FIVEONE_HUNDRED_SIXTY_ONESEVENSIXTENTHIRTY_SIXTHREETWOUSER_DEFINED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static MiracastChannelvalueOf(String name)Returns the enum constant of this type with the specified name.static MiracastChannel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER_DEFINED
public static final MiracastChannel USER_DEFINED
-
ONE
public static final MiracastChannel ONE
-
TWO
public static final MiracastChannel TWO
-
THREE
public static final MiracastChannel THREE
-
FOUR
public static final MiracastChannel FOUR
-
FIVE
public static final MiracastChannel FIVE
-
SIX
public static final MiracastChannel SIX
-
SEVEN
public static final MiracastChannel SEVEN
-
EIGHT
public static final MiracastChannel EIGHT
-
NINE
public static final MiracastChannel NINE
-
TEN
public static final MiracastChannel TEN
-
ELEVEN
public static final MiracastChannel ELEVEN
-
THIRTY_SIX
public static final MiracastChannel THIRTY_SIX
-
FORTY
public static final MiracastChannel FORTY
-
FORTY_FOUR
public static final MiracastChannel FORTY_FOUR
-
FORTY_EIGHT
public static final MiracastChannel FORTY_EIGHT
-
ONE_HUNDRED_FORTY_NINE
public static final MiracastChannel ONE_HUNDRED_FORTY_NINE
-
ONE_HUNDRED_FIFTY_THREE
public static final MiracastChannel ONE_HUNDRED_FIFTY_THREE
-
ONE_HUNDRED_FIFTY_SEVEN
public static final MiracastChannel ONE_HUNDRED_FIFTY_SEVEN
-
ONE_HUNDRED_SIXTY_ONE
public static final MiracastChannel ONE_HUNDRED_SIXTY_ONE
-
ONE_HUNDRED_SIXTY_FIVE
public static final MiracastChannel ONE_HUNDRED_SIXTY_FIVE
-
-
Method Detail
-
values
public static MiracastChannel[] 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 (MiracastChannel c : MiracastChannel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MiracastChannel 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
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-