Package tv.hd3g.fflauncher.enums
Enum FilterConnectorType
- java.lang.Object
-
- java.lang.Enum<FilterConnectorType>
-
- tv.hd3g.fflauncher.enums.FilterConnectorType
-
- All Implemented Interfaces:
Serializable,Comparable<FilterConnectorType>
public enum FilterConnectorType extends Enum<FilterConnectorType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUDIODYNAMICDynamic number and/or typeSOURCE_SINKVIDEO
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FilterConnectorTypevalueOf(String name)Returns the enum constant of this type with the specified name.static FilterConnectorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUDIO
public static final FilterConnectorType AUDIO
-
VIDEO
public static final FilterConnectorType VIDEO
-
DYNAMIC
public static final FilterConnectorType DYNAMIC
Dynamic number and/or type
-
SOURCE_SINK
public static final FilterConnectorType SOURCE_SINK
-
-
Method Detail
-
values
public static FilterConnectorType[] 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 (FilterConnectorType c : FilterConnectorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilterConnectorType 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
-
-