public static enum UUIDGeneratorPipe.Type extends Enum<UUIDGeneratorPipe.Type>
Enum Constant and Description |
---|
ALPHANUMERIC
the UUID will not have a fixed length which will be about 42
|
NUMERIC
a UUID with fixed length 31 will be generated
|
Modifier and Type | Method and Description |
---|---|
static UUIDGeneratorPipe.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UUIDGeneratorPipe.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UUIDGeneratorPipe.Type ALPHANUMERIC
public static final UUIDGeneratorPipe.Type NUMERIC
public static UUIDGeneratorPipe.Type[] values()
for (UUIDGeneratorPipe.Type c : UUIDGeneratorPipe.Type.values()) System.out.println(c);
public static UUIDGeneratorPipe.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023 Frank!Framework. All rights reserved.