Package com.banuba.sdk.scene
Enum GeometryTopology
- java.lang.Object
-
- java.lang.Enum<GeometryTopology>
-
- com.banuba.sdk.scene.GeometryTopology
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GeometryTopology>
public enum GeometryTopology extends java.lang.Enum<GeometryTopology>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LINES_LIST
POINTS_LIST
TRIANGLES_LIST
TRIANGLES_STRIP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GeometryTopology
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GeometryTopology[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRIANGLES_LIST
public static final GeometryTopology TRIANGLES_LIST
-
TRIANGLES_STRIP
public static final GeometryTopology TRIANGLES_STRIP
-
LINES_LIST
public static final GeometryTopology LINES_LIST
-
POINTS_LIST
public static final GeometryTopology POINTS_LIST
-
-
Method Detail
-
values
public static GeometryTopology[] 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 (GeometryTopology c : GeometryTopology.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeometryTopology 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
-
-