public static enum JmsMessageIDBuilder.BUILTIN extends Enum<JmsMessageIDBuilder.BUILTIN>
| Enum Constant and Description |
|---|
DEFAULT |
PREFIXED_UUID_STRING |
UUID |
UUID_STRING |
| Modifier and Type | Method and Description |
|---|---|
static JmsMessageIDBuilder |
create(String value)
Creates a new JmsMessageIDBuilder from the named type (case insensitive).
|
abstract JmsMessageIDBuilder |
createBuilder() |
static JmsMessageIDBuilder.BUILTIN |
validate(String value)
Validates the value given maps to the built in message ID builders and
return the builder enumeration that it maps to which can later be used
to create builders of that type.
|
static JmsMessageIDBuilder.BUILTIN |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JmsMessageIDBuilder.BUILTIN[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JmsMessageIDBuilder.BUILTIN DEFAULT
public static final JmsMessageIDBuilder.BUILTIN UUID
public static final JmsMessageIDBuilder.BUILTIN UUID_STRING
public static final JmsMessageIDBuilder.BUILTIN PREFIXED_UUID_STRING
public static JmsMessageIDBuilder.BUILTIN[] values()
for (JmsMessageIDBuilder.BUILTIN c : JmsMessageIDBuilder.BUILTIN.values()) System.out.println(c);
public static JmsMessageIDBuilder.BUILTIN 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 nullpublic abstract JmsMessageIDBuilder createBuilder()
public static JmsMessageIDBuilder create(String value)
value - The name of the builder to create.IllegalArgumentException - if the named type is unknown.public static JmsMessageIDBuilder.BUILTIN validate(String value)
value - The name of one of the built in message ID builders.Copyright © 2013–2019 The Apache Software Foundation. All rights reserved.