Package com.shixing.sxedit.types
Enum SXGenericEffectType
- java.lang.Object
-
- java.lang.Enum<SXGenericEffectType>
-
- com.shixing.sxedit.types.SXGenericEffectType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SXGenericEffectType>
public enum SXGenericEffectType extends java.lang.Enum<SXGenericEffectType>
内置特效类型
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHROMA_KEY
抠图COLOR_ADJUSTMENT
颜色调节FACE_BEAUTY
美颜GAUSSIAN_BLUR
高斯模糊MULTIPLE_COLOR_KEY
色块抠图TRACK_MATTE
轨道遮罩
-
Field Summary
Fields Modifier and Type Field Description int
value
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SXGenericEffectType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SXGenericEffectType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COLOR_ADJUSTMENT
public static final SXGenericEffectType COLOR_ADJUSTMENT
颜色调节
-
CHROMA_KEY
public static final SXGenericEffectType CHROMA_KEY
抠图
-
GAUSSIAN_BLUR
public static final SXGenericEffectType GAUSSIAN_BLUR
高斯模糊
-
FACE_BEAUTY
public static final SXGenericEffectType FACE_BEAUTY
美颜
-
MULTIPLE_COLOR_KEY
public static final SXGenericEffectType MULTIPLE_COLOR_KEY
色块抠图
-
TRACK_MATTE
public static final SXGenericEffectType TRACK_MATTE
轨道遮罩
-
-
Method Detail
-
values
public static SXGenericEffectType[] 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 (SXGenericEffectType c : SXGenericEffectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SXGenericEffectType 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
-
-