Enum libvlc_log_level_e
- java.lang.Object
-
- java.lang.Enum<libvlc_log_level_e>
-
- uk.co.caprica.vlcj.binding.internal.libvlc_log_level_e
-
- All Implemented Interfaces:
Serializable
,Comparable<libvlc_log_level_e>
public enum libvlc_log_level_e extends Enum<libvlc_log_level_e>
Enumeration of native log levels.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
intValue()
static libvlc_log_level_e
level(int intValue)
static libvlc_log_level_e
valueOf(String name)
Returns the enum constant of this type with the specified name.static libvlc_log_level_e[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEBUG
public static final libvlc_log_level_e DEBUG
-
NOTICE
public static final libvlc_log_level_e NOTICE
-
WARNING
public static final libvlc_log_level_e WARNING
-
ERROR
public static final libvlc_log_level_e ERROR
-
-
Method Detail
-
values
public static libvlc_log_level_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_log_level_e c : libvlc_log_level_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_log_level_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
-
level
public static libvlc_log_level_e level(int intValue)
-
intValue
public int intValue()
-
-