public static enum ObjectProperties.Property extends Enum<ObjectProperties.Property>
Enum Constant and Description |
---|
ALTERNATE |
AUTO_DELETE |
CLASS |
COMPONENT |
DURABLE |
EXCLUSIVE |
FROM_HOSTNAME |
FROM_NETWORK |
IMMEDIATE |
INTERNAL |
NAME |
NO_ACK |
NO_LOCAL |
NO_WAIT |
OWNER |
PACKAGE |
PASSIVE |
QUEUE_NAME |
ROUTING_KEY |
TEMPORARY |
TYPE |
VIRTUALHOST_NAME |
Modifier and Type | Method and Description |
---|---|
static ObjectProperties.Property |
parse(String text)
Properties are parsed using their canonical name (see
getCanonicalName(String) )
so that, for the sake of user-friendliness, the ACL file parses is insensitive to
case and underscores. |
static ObjectProperties.Property |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectProperties.Property[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectProperties.Property ROUTING_KEY
public static final ObjectProperties.Property NAME
public static final ObjectProperties.Property QUEUE_NAME
public static final ObjectProperties.Property OWNER
public static final ObjectProperties.Property TYPE
public static final ObjectProperties.Property ALTERNATE
public static final ObjectProperties.Property IMMEDIATE
public static final ObjectProperties.Property INTERNAL
public static final ObjectProperties.Property NO_WAIT
public static final ObjectProperties.Property NO_LOCAL
public static final ObjectProperties.Property NO_ACK
public static final ObjectProperties.Property PASSIVE
public static final ObjectProperties.Property DURABLE
public static final ObjectProperties.Property EXCLUSIVE
public static final ObjectProperties.Property TEMPORARY
public static final ObjectProperties.Property AUTO_DELETE
public static final ObjectProperties.Property COMPONENT
public static final ObjectProperties.Property PACKAGE
public static final ObjectProperties.Property CLASS
public static final ObjectProperties.Property FROM_NETWORK
public static final ObjectProperties.Property FROM_HOSTNAME
public static final ObjectProperties.Property VIRTUALHOST_NAME
public static ObjectProperties.Property[] values()
for (ObjectProperties.Property c : ObjectProperties.Property.values()) System.out.println(c);
public static ObjectProperties.Property 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 static ObjectProperties.Property parse(String text)
getCanonicalName(String)
)
so that, for the sake of user-friendliness, the ACL file parses is insensitive to
case and underscores.Copyright © 2006–2016 The Apache Software Foundation. All rights reserved.