public interface JmsReadablePropertyContext
extends java.io.Serializable
| Modifier and Type | Method and Description |
|---|---|
boolean |
getBooleanProperty(java.lang.String name)
Gets the boolean property value with the given name.
|
byte |
getByteProperty(java.lang.String name)
Gets the byte property value with the given name.
|
byte[] |
getBytesProperty(java.lang.String name)
Gets the bytes property value with the given name.
|
char |
getCharProperty(java.lang.String name)
Gets the char property value with the given name.
|
double |
getDoubleProperty(java.lang.String name)
Gets the double property value with the given name.
|
float |
getFloatProperty(java.lang.String name)
Gets the float property value with the given name.
|
int |
getIntProperty(java.lang.String name)
Gets the int property value with the given name.
|
long |
getLongProperty(java.lang.String name)
Gets the long property value with the given name.
|
java.lang.Object |
getObjectProperty(java.lang.String name)
Gets the Object property value with the given name.
|
java.util.Enumeration<java.lang.String> |
getPropertyNames()
Gets all properties which have been set on a resource.
|
short |
getShortProperty(java.lang.String name)
Gets the short property value with the given name.
|
java.lang.String |
getStringProperty(java.lang.String name)
Gets the String property value with the given name.
|
boolean |
propertyExists(java.lang.String name)
Indicates whether the specified property exists in the property context.
|
boolean propertyExists(java.lang.String name)
throws javax.jms.JMSException
name - the name of the property to check.javax.jms.JMSExceptionchar getCharProperty(java.lang.String name)
throws javax.jms.JMSException
name - the name of the property to be retrieved.javax.jms.JMSExceptionboolean getBooleanProperty(java.lang.String name)
throws javax.jms.JMSException
name - the name of the property to be retrieved.javax.jms.JMSExceptionbyte getByteProperty(java.lang.String name)
throws javax.jms.JMSException
name - the name of the property to be retrieved.javax.jms.JMSExceptionshort getShortProperty(java.lang.String name)
throws javax.jms.JMSException
name - the name of the property to be retrieved.javax.jms.JMSExceptionint getIntProperty(java.lang.String name)
throws javax.jms.JMSException
name - the name of the property to be retrieved.javax.jms.JMSExceptionlong getLongProperty(java.lang.String name)
throws javax.jms.JMSException
name - the name of the property to be retrieved.javax.jms.JMSExceptionfloat getFloatProperty(java.lang.String name)
throws javax.jms.JMSException
name - the name of the property to be retrieved.javax.jms.JMSExceptiondouble getDoubleProperty(java.lang.String name)
throws javax.jms.JMSException
name - the name of the property to be retrieved.javax.jms.JMSExceptionjava.lang.String getStringProperty(java.lang.String name)
throws javax.jms.JMSException
name - the name of the property to be retrieved.javax.jms.JMSExceptionjava.lang.Object getObjectProperty(java.lang.String name)
throws javax.jms.JMSException
name - the name of the property to be retrieved.javax.jms.JMSExceptionbyte[] getBytesProperty(java.lang.String name)
throws javax.jms.JMSException
name - the name of the property to be retrieved.javax.jms.JMSExceptionjava.util.Enumeration<java.lang.String> getPropertyNames()
throws javax.jms.JMSException
javax.jms.JMSException