Enum TransformContext.State
- java.lang.Object
-
- java.lang.Enum<TransformContext.State>
-
- com.ss.android.ugc.bytex.transformer.TransformContext.State
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TransformContext.State>
- Enclosing class:
- TransformContext
public static enum TransformContext.State extends java.lang.Enum<TransformContext.State> implements java.lang.Comparable<TransformContext.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTERTRANSFORMBEFORETRANSFORMBEFORETRAVERSEINCREMENTALTRAVERSINGINITIALIZEDINITIALIZINGRUNNINGSTATELESSTRANSFORMINGTRAVERSINGTRAVERSINGANDROID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TransformContext.StatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TransformContext.State[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATELESS
public static final TransformContext.State STATELESS
-
INITIALIZING
public static final TransformContext.State INITIALIZING
-
INITIALIZED
public static final TransformContext.State INITIALIZED
-
INCREMENTALTRAVERSING
public static final TransformContext.State INCREMENTALTRAVERSING
-
BEFORETRAVERSE
public static final TransformContext.State BEFORETRAVERSE
-
RUNNING
public static final TransformContext.State RUNNING
-
TRAVERSING
public static final TransformContext.State TRAVERSING
-
TRAVERSINGANDROID
public static final TransformContext.State TRAVERSINGANDROID
-
BEFORETRANSFORM
public static final TransformContext.State BEFORETRANSFORM
-
TRANSFORMING
public static final TransformContext.State TRANSFORMING
-
AFTERTRANSFORM
public static final TransformContext.State AFTERTRANSFORM
-
-
Method Detail
-
values
public static TransformContext.State[] 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 (TransformContext.State c : TransformContext.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransformContext.State 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
-
-