Enum libvlc_navigate_mode_e
- java.lang.Object
-
- java.lang.Enum<libvlc_navigate_mode_e>
-
- uk.co.caprica.vlcj.binding.internal.libvlc_navigate_mode_e
-
- All Implemented Interfaces:
Serializable
,Comparable<libvlc_navigate_mode_e>
public enum libvlc_navigate_mode_e extends Enum<libvlc_navigate_mode_e>
Enumeration of DVD navigation modes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description libvlc_navigate_activate
libvlc_navigate_down
libvlc_navigate_left
libvlc_navigate_popup
libvlc_navigate_right
libvlc_navigate_up
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static libvlc_navigate_mode_e
event(int intValue)
int
intValue()
static libvlc_navigate_mode_e
valueOf(String name)
Returns the enum constant of this type with the specified name.static libvlc_navigate_mode_e[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
libvlc_navigate_activate
public static final libvlc_navigate_mode_e libvlc_navigate_activate
-
libvlc_navigate_up
public static final libvlc_navigate_mode_e libvlc_navigate_up
-
libvlc_navigate_down
public static final libvlc_navigate_mode_e libvlc_navigate_down
-
libvlc_navigate_left
public static final libvlc_navigate_mode_e libvlc_navigate_left
-
libvlc_navigate_right
public static final libvlc_navigate_mode_e libvlc_navigate_right
-
libvlc_navigate_popup
public static final libvlc_navigate_mode_e libvlc_navigate_popup
-
-
Method Detail
-
values
public static libvlc_navigate_mode_e[] 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 (libvlc_navigate_mode_e c : libvlc_navigate_mode_e.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static libvlc_navigate_mode_e 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
-
event
public static libvlc_navigate_mode_e event(int intValue)
-
intValue
public int intValue()
-
-