Enum AVLogLevelType
- java.lang.Object
-
- java.lang.Enum<AVLogLevelType>
-
- com.github.vbauer.avconv4java.type.AVLogLevelType
-
- All Implemented Interfaces:
NamedType,java.io.Serializable,java.lang.Comparable<AVLogLevelType>
public enum AVLogLevelType extends java.lang.Enum<AVLogLevelType> implements NamedType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAVLogLevelType.Constants
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AVLogLevelTypefindByName(java.lang.String name)java.lang.StringgetName()static AVLogLevelTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AVLogLevelType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
QUIET
public static final AVLogLevelType QUIET
-
PANIC
public static final AVLogLevelType PANIC
-
FATAL
public static final AVLogLevelType FATAL
-
ERROR
public static final AVLogLevelType ERROR
-
WARNING
public static final AVLogLevelType WARNING
-
INFO
public static final AVLogLevelType INFO
-
VERBOSE
public static final AVLogLevelType VERBOSE
-
DEBUG
public static final AVLogLevelType DEBUG
-
-
Method Detail
-
values
public static AVLogLevelType[] 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 (AVLogLevelType c : AVLogLevelType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AVLogLevelType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
findByName
public static AVLogLevelType findByName(java.lang.String name)
-
-