Uses of Enum Class
jdk.incubator.vector.VectorShape
Packages that use VectorShape
-
Uses of VectorShape in jdk.incubator.vector
Methods in jdk.incubator.vector that return VectorShapeModifier and TypeMethodDescriptionstatic VectorShape
VectorShape.forBitSize
(int bitSize) Finds an appropriate shape depending on the proposed bit-size of a vector.static VectorShape
VectorShape.forIndexBitSize
(int indexBitSize, int elementSize) Finds an appropriate index shape depending on the proposed index-bit-size and element-size of a vector.static VectorShape
VectorShape.preferredShape()
Finds the vector shape preferred by the current platform for all vector element types.abstract VectorShape
Vector.shape()
Returns the shape of this vector.static VectorShape
Returns the enum constant of this class with the specified name.static VectorShape[]
VectorShape.values()
Returns an array containing the constants of this enum class, in the order they are declared.VectorSpecies.vectorShape()
Returns the shape of vectors produced by this species.Methods in jdk.incubator.vector with parameters of type VectorShapeModifier and TypeMethodDescriptionstatic <E> VectorSpecies<E>
VectorSpecies.of
(Class<E> elementType, VectorShape shape) Finds a species for an element type and shape.VectorSpecies.withShape
(VectorShape newShape) Finds a species with the given shape and the same elementType as this species.