Package org.hornetq.api.core

Examples of org.hornetq.api.core.SimpleString


      return this;
   }

   public Message putDoubleProperty(final String key, final double value)
   {
      properties.putDoubleProperty(new SimpleString(key), value);

      bufferValid = false;

      return this;
   }
View Full Code Here


      return this;
   }

   public Message putStringProperty(final String key, final String value)
   {
      properties.putSimpleStringProperty(new SimpleString(key), SimpleString.toSimpleString(value));

      bufferValid = false;

      return this;
   }
View Full Code Here

      return properties.getBooleanProperty(key);
   }

   public Boolean getBooleanProperty(final String key) throws HornetQPropertyConversionException
   {
      return properties.getBooleanProperty(new SimpleString(key));
   }
View Full Code Here

      return properties.getByteProperty(key);
   }

   public Byte getByteProperty(final String key) throws HornetQPropertyConversionException
   {
      return properties.getByteProperty(new SimpleString(key));
   }
View Full Code Here

      return properties.getBytesProperty(key);
   }

   public byte[] getBytesProperty(final String key) throws HornetQPropertyConversionException
   {
      return getBytesProperty(new SimpleString(key));
   }
View Full Code Here

      return properties.getDoubleProperty(key);
   }

   public Double getDoubleProperty(final String key) throws HornetQPropertyConversionException
   {
      return properties.getDoubleProperty(new SimpleString(key));
   }
View Full Code Here

      return properties.getIntProperty(key);
   }

   public Integer getIntProperty(final String key) throws HornetQPropertyConversionException
   {
      return properties.getIntProperty(new SimpleString(key));
   }
View Full Code Here

      return properties.getLongProperty(key);
   }

   public Long getLongProperty(final String key) throws HornetQPropertyConversionException
   {
      return properties.getLongProperty(new SimpleString(key));
   }
View Full Code Here

      return properties.getShortProperty(key);
   }

   public Short getShortProperty(final String key) throws HornetQPropertyConversionException
   {
      return properties.getShortProperty(new SimpleString(key));
   }
View Full Code Here

      return properties.getFloatProperty(key);
   }

   public Float getFloatProperty(final String key) throws HornetQPropertyConversionException
   {
      return properties.getFloatProperty(new SimpleString(key));
   }
View Full Code Here

TOP

Related Classes of org.hornetq.api.core.SimpleString

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.