Uses of Class
com.esri.core.geometry.AttributeStreamBase
-
Packages that use AttributeStreamBase Package Description com.esri.core.geometry -
-
Uses of AttributeStreamBase in com.esri.core.geometry
Subclasses of AttributeStreamBase in com.esri.core.geometry Modifier and Type Class Description (package private) class
AttributeStreamOfDbl
(package private) class
AttributeStreamOfFloat
(package private) class
AttributeStreamOfInt16
(package private) class
AttributeStreamOfInt32
(package private) class
AttributeStreamOfInt64
(package private) class
AttributeStreamOfInt8
Fields in com.esri.core.geometry declared as AttributeStreamBase Modifier and Type Field Description (package private) AttributeStreamBase[]
MultiVertexGeometryImpl. m_vertexAttributes
Methods in com.esri.core.geometry that return AttributeStreamBase Modifier and Type Method Description static AttributeStreamBase
AttributeStreamBase. createAttributeStreamWithPersistence(int persistence, int size)
Creates a new attribute stream of given persistence type and size.static AttributeStreamBase
AttributeStreamBase. createAttributeStreamWithPersistence(int persistence, int size, double defaultValue)
Creates a new attribute stream of given persistence type and size.static AttributeStreamBase
AttributeStreamBase. createAttributeStreamWithSemantics(int semantics, int vertexCount)
Creates a new attribute stream for the given semantics and vertex count.static AttributeStreamBase
AttributeStreamBase. createByteStream(int size)
Creates a new attribute stream for storing bytes.static AttributeStreamBase
AttributeStreamBase. createByteStream(int size, byte defaultValue)
Creates a new attribute stream for storing bytes.static AttributeStreamBase
AttributeStreamBase. createDoubleStream(int size)
Creates a new attribute stream for storing doubles.static AttributeStreamBase
AttributeStreamBase. createDoubleStream(int size, double defaultValue)
Creates a new attribute stream for storing doubles.static AttributeStreamBase
AttributeStreamBase. createIndexStream(int size)
Creates a new attribute stream for storing vertex indices.static AttributeStreamBase
AttributeStreamBase. createIndexStream(int size, int defaultValue)
Creates a new attribute stream for storing vertex indices.AttributeStreamBase
MultiVertexGeometryImpl. getAttributeStreamRef(int semantics)
abstract AttributeStreamBase
AttributeStreamBase. restrictedClone(int maxsize)
Creats a copy of the stream that contains upto maxsize elements.AttributeStreamBase
AttributeStreamOfDbl. restrictedClone(int maxsize)
AttributeStreamBase
AttributeStreamOfFloat. restrictedClone(int maxsize)
AttributeStreamBase
AttributeStreamOfInt16. restrictedClone(int maxsize)
AttributeStreamBase
AttributeStreamOfInt32. restrictedClone(int maxsize)
AttributeStreamBase
AttributeStreamOfInt64. restrictedClone(int maxsize)
AttributeStreamBase
AttributeStreamOfInt8. restrictedClone(int maxsize)
Methods in com.esri.core.geometry with parameters of type AttributeStreamBase Modifier and Type Method Description abstract void
AttributeStreamBase. addRange(AttributeStreamBase src, int srcStart, int count, boolean bForward, int stride)
Adds a range of elements from the source stream.void
AttributeStreamOfDbl. addRange(AttributeStreamBase src, int start, int count, boolean bForward, int stride)
void
AttributeStreamOfFloat. addRange(AttributeStreamBase src, int start, int count, boolean bForward, int stride)
void
AttributeStreamOfInt16. addRange(AttributeStreamBase src, int start, int count, boolean bForward, int stride)
void
AttributeStreamOfInt32. addRange(AttributeStreamBase src, int start, int count, boolean bForward, int stride)
void
AttributeStreamOfInt64. addRange(AttributeStreamBase src, int start, int count, boolean bForward, int stride)
void
AttributeStreamOfInt8. addRange(AttributeStreamBase src, int start, int count, boolean bForward, int stride)
abstract boolean
AttributeStreamBase. equals(AttributeStreamBase other, int start, int end)
boolean
AttributeStreamOfDbl. equals(AttributeStreamBase other, int start, int end)
boolean
AttributeStreamOfFloat. equals(AttributeStreamBase other, int start, int end)
boolean
AttributeStreamOfInt16. equals(AttributeStreamBase other, int start, int end)
boolean
AttributeStreamOfInt32. equals(AttributeStreamBase other, int start, int end)
boolean
AttributeStreamOfInt64. equals(AttributeStreamBase other, int start, int end)
boolean
AttributeStreamOfInt8. equals(AttributeStreamBase other, int start, int end)
abstract void
AttributeStreamBase. insertRange(int start, AttributeStreamBase src, int srcStart, int count, boolean bForward, int stride, int validSize)
Inserts a range of elements from the source stream.void
AttributeStreamOfDbl. insertRange(int start, AttributeStreamBase src, int srcStart, int count, boolean bForward, int stride, int validSize)
void
AttributeStreamOfFloat. insertRange(int start, AttributeStreamBase src, int srcStart, int count, boolean bForward, int stride, int validSize)
void
AttributeStreamOfInt16. insertRange(int start, AttributeStreamBase src, int srcStart, int count, boolean bForward, int stride, int validSize)
void
AttributeStreamOfInt32. insertRange(int start, AttributeStreamBase src, int srcStart, int count, boolean bForward, int stride, int validSize)
void
AttributeStreamOfInt64. insertRange(int start, AttributeStreamBase src, int srcStart, int count, boolean bForward, int stride, int validSize)
void
AttributeStreamOfInt8. insertRange(int start, AttributeStreamBase src, int srcStart, int count, boolean bForward, int stride, int validSize)
void
MultiVertexGeometryImpl. setAttributeStreamRef(int semantics, AttributeStreamBase stream)
Sets a reference to the given AttributeStream of the Geometry.abstract void
AttributeStreamBase. writeRange(int startElement, int count, AttributeStreamBase src, int sourceStart, boolean bForward, int stride)
Adds a range of elements from the source byte buffer.void
AttributeStreamOfDbl. writeRange(int startElement, int count, AttributeStreamBase _src, int srcStart, boolean bForward, int stride)
void
AttributeStreamOfFloat. writeRange(int startElement, int count, AttributeStreamBase _src, int srcStart, boolean bForward, int stride)
void
AttributeStreamOfInt16. writeRange(int startElement, int count, AttributeStreamBase _src, int srcStart, boolean bForward, int stride)
void
AttributeStreamOfInt32. writeRange(int startElement, int count, AttributeStreamBase _src, int srcStart, boolean bForward, int stride)
void
AttributeStreamOfInt64. writeRange(int startElement, int count, AttributeStreamBase _src, int srcStart, boolean bForward, int stride)
void
AttributeStreamOfInt8. writeRange(int startElement, int count, AttributeStreamBase _src, int srcStart, boolean bForward, int stride)
-