Package com.shixing.sxedit
Enum SXGenericEffect.SXGenericEffectType
- java.lang.Object
-
- java.lang.Enum<SXGenericEffect.SXGenericEffectType>
-
- com.shixing.sxedit.SXGenericEffect.SXGenericEffectType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SXGenericEffect.SXGenericEffectType>
- Enclosing class:
- SXGenericEffect
public static enum SXGenericEffect.SXGenericEffectType extends java.lang.Enum<SXGenericEffect.SXGenericEffectType>
内置特效类型
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHROMA_KEY
抠图COLOR_ADJUSTMENT
颜色调节FACE_BEAUTY
美颜GAUSSIAN_BLUR
高斯模糊MULTIPLE_COLOR_KEY
色块抠图TRACK_MATTE
轨道遮罩
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SXGenericEffect.SXGenericEffectType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SXGenericEffect.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 SXGenericEffect.SXGenericEffectType COLOR_ADJUSTMENT
颜色调节
-
CHROMA_KEY
public static final SXGenericEffect.SXGenericEffectType CHROMA_KEY
抠图
-
GAUSSIAN_BLUR
public static final SXGenericEffect.SXGenericEffectType GAUSSIAN_BLUR
高斯模糊
-
FACE_BEAUTY
public static final SXGenericEffect.SXGenericEffectType FACE_BEAUTY
美颜
-
MULTIPLE_COLOR_KEY
public static final SXGenericEffect.SXGenericEffectType MULTIPLE_COLOR_KEY
色块抠图
-
TRACK_MATTE
public static final SXGenericEffect.SXGenericEffectType TRACK_MATTE
轨道遮罩
-
-
Method Detail
-
values
public static SXGenericEffect.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 (SXGenericEffect.SXGenericEffectType c : SXGenericEffect.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 SXGenericEffect.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
-
-