Enum Class PropertyTypePLY

java.lang.Object
java.lang.Enum<PropertyTypePLY>
com.irurueta.geometry.io.PropertyTypePLY
All Implemented Interfaces:
Serializable, Comparable<PropertyTypePLY>, Constable

public enum PropertyTypePLY extends Enum<PropertyTypePLY>
Enumeration defining supported property types.
  • Enum Constant Details

    • PROPERTY_PLY_SCALAR

      public static final PropertyTypePLY PROPERTY_PLY_SCALAR
      Scalar type for single valued elements, such as vertex coordinates.
    • PROPERTY_PLY_LIST

      public static final PropertyTypePLY PROPERTY_PLY_LIST
      List type for array valued elements, such as faces containing vertex indexes forming polygons.
  • Constructor Details

    • PropertyTypePLY

      private PropertyTypePLY()
  • Method Details

    • values

      public static PropertyTypePLY[] 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 PropertyTypePLY 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