Enum AVStrictType
- java.lang.Object
-
- java.lang.Enum<AVStrictType>
-
- com.github.vbauer.avconv4java.type.AVStrictType
-
- All Implemented Interfaces:
NamedType,java.io.Serializable,java.lang.Comparable<AVStrictType>
public enum AVStrictType extends java.lang.Enum<AVStrictType> implements NamedType
Type shows how strictly to follow the standards.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAVStrictType.Constants
-
Enum Constant Summary
Enum Constants Enum Constant Description EXPERIMENTALAllow non-standardized experimental things.NORMALAllow unofficial extensions.STRICTStrictly conform to all the things in the spec no matter what the consequences.UNOFFICIALAllow unofficial extensions.VERYStrictly conform to a older more strict version of the spec or reference software.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AVStrictTypefindByName(java.lang.String name)java.lang.StringgetName()static AVStrictTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AVStrictType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VERY
public static final AVStrictType VERY
Strictly conform to a older more strict version of the spec or reference software.
-
STRICT
public static final AVStrictType STRICT
Strictly conform to all the things in the spec no matter what the consequences.
-
NORMAL
public static final AVStrictType NORMAL
Allow unofficial extensions.
-
UNOFFICIAL
public static final AVStrictType UNOFFICIAL
Allow unofficial extensions.
-
EXPERIMENTAL
public static final AVStrictType EXPERIMENTAL
Allow non-standardized experimental things.
-
-
Method Detail
-
values
public static AVStrictType[] 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 (AVStrictType c : AVStrictType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AVStrictType 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 AVStrictType findByName(java.lang.String name)
-
-