Enum LoadGltfListener.GltfLoadStage
- java.lang.Object
-
- java.lang.Enum<LoadGltfListener.GltfLoadStage>
-
- pro.streem.ar.sceneform.rendering.LoadGltfListener.GltfLoadStage
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LoadGltfListener.GltfLoadStage>
- Enclosing interface:
- LoadGltfListener
public static enum LoadGltfListener.GltfLoadStage extends java.lang.Enum<LoadGltfListener.GltfLoadStage>
Defines the current stage of the load operation, each value supersedes the previous.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_MISSING_FILESCREATE_LOADERCREATE_RENDERABLEDOWNLOAD_MODELFETCH_MATERIALSFINISHED_READING_FILESLOAD_STAGE_NONE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LoadGltfListener.GltfLoadStagevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LoadGltfListener.GltfLoadStage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOAD_STAGE_NONE
public static final LoadGltfListener.GltfLoadStage LOAD_STAGE_NONE
-
FETCH_MATERIALS
public static final LoadGltfListener.GltfLoadStage FETCH_MATERIALS
-
DOWNLOAD_MODEL
public static final LoadGltfListener.GltfLoadStage DOWNLOAD_MODEL
-
CREATE_LOADER
public static final LoadGltfListener.GltfLoadStage CREATE_LOADER
-
ADD_MISSING_FILES
public static final LoadGltfListener.GltfLoadStage ADD_MISSING_FILES
-
FINISHED_READING_FILES
public static final LoadGltfListener.GltfLoadStage FINISHED_READING_FILES
-
CREATE_RENDERABLE
public static final LoadGltfListener.GltfLoadStage CREATE_RENDERABLE
-
-
Method Detail
-
values
public static LoadGltfListener.GltfLoadStage[] 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 (LoadGltfListener.GltfLoadStage c : LoadGltfListener.GltfLoadStage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LoadGltfListener.GltfLoadStage 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
-
-