Enum Class PlyImporter.ListProperty

java.lang.Object
java.lang.Enum<PlyImporter.ListProperty>
com.ardor3d.extension.model.ply.PlyImporter.ListProperty
All Implemented Interfaces:
Serializable, Comparable<PlyImporter.ListProperty>, Constable
Enclosing class:
PlyImporter

public static enum PlyImporter.ListProperty extends Enum<PlyImporter.ListProperty>
  • Enum Constant Details

    • VERTEX_INDICES

      public static final PlyImporter.ListProperty VERTEX_INDICES
      indices of the vertices
    • MATERIAL_INDICES

      public static final PlyImporter.ListProperty MATERIAL_INDICES
      indices of materials (not sure that it's really in the specification)
    • TEXCOORD

      public static final PlyImporter.ListProperty TEXCOORD
      texture coordinates (probably only supported by MeshLab)
    • CUSTOM

      public static final PlyImporter.ListProperty CUSTOM
      custom, i.e user-defined, not build-in, up to the developer to support it
  • Method Details

    • values

      public static PlyImporter.ListProperty[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PlyImporter.ListProperty valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getElements

      public PlyImporter.Element[] getElements()
    • get

      public static PlyImporter.ListProperty get(String name)