Package de.javagl.ply
Interface PropertyDescriptor
-
public interface PropertyDescriptorA description of a property of an element of a PLY file
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Returns the name of the propertyPlyTypegetSizeType()Returns the type of the list size, ornullif this is not a list property.PlyTypegetType()Returns the type of the propertybooleanisList()Returns whether the property is a 'list' property
-
-
-
Method Detail
-
getName
String getName()
Returns the name of the property- Returns:
- The name of the property
-
getType
PlyType getType()
Returns the type of the property- Returns:
- The type of the property
-
isList
boolean isList()
Returns whether the property is a 'list' property- Returns:
- Whether the property is a 'list' property
-
getSizeType
PlyType getSizeType()
Returns the type of the list size, ornullif this is not a list property.- Returns:
- The type of the list size
-
-