Uses of Enum Class
com.fasterxml.uuid.UUIDType
Packages that use UUIDType
Package
Description
Package that contains classes that define Java UUID Generator API.
Package that contains actual Java UUID Generator implementation classes,
including generators for different UUID types.
-
Uses of UUIDType in com.fasterxml.uuid
Methods in com.fasterxml.uuid that return UUIDTypeModifier and TypeMethodDescriptionabstract UUIDTypeUUIDGenerator.getType()Accessor for determining type of UUIDs (version) that this generator instance will produce.static UUIDTypeReturns the enum constant of this class with the specified name.static UUIDType[]UUIDType.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of UUIDType in com.fasterxml.uuid.impl
Fields in com.fasterxml.uuid.impl declared as UUIDTypeMethods in com.fasterxml.uuid.impl that return UUIDTypeModifier and TypeMethodDescriptionNameBasedGenerator.getType()RandomBasedGenerator.getType()TimeBasedEpochGenerator.getType()TimeBasedEpochRandomGenerator.getType()TimeBasedGenerator.getType()TimeBasedReorderedGenerator.getType()static UUIDTypeMethod for determining which type of UUID given UUID is.Methods in com.fasterxml.uuid.impl with parameters of type UUIDTypeModifier and TypeMethodDescriptionstatic UUIDUUIDUtil.constructUUID(UUIDType type, byte[] uuidBytes) Helper method for constructing UUID instances with appropriate typestatic UUIDUUIDUtil.constructUUID(UUIDType type, long l1, long l2) static longUUIDUtil.initUUIDFirstLong(long l1, UUIDType type) Constructors in com.fasterxml.uuid.impl with parameters of type UUIDTypeModifierConstructorDescriptionNameBasedGenerator(UUID namespace, MessageDigest digester, UUIDType type)