Class RawType

java.lang.Object
org.openhab.core.library.types.RawType
All Implemented Interfaces:
PrimitiveType, State, Type

@NonNullByDefault public class RawType extends Object implements PrimitiveType, State
This type can be used for all binary data such as images, documents, sounds etc. Note that it is NOT adequate for any kind of streams, but only for fixed-size data.
Author:
Kai Kreuzer - Initial contribution, Laurent Garnier - add MIME type
  • Field Details

    • DEFAULT_MIME_TYPE

      public static final String DEFAULT_MIME_TYPE
      See Also:
    • bytes

      protected byte[] bytes
    • mimeType

      protected String mimeType
  • Constructor Details

    • RawType

      public RawType(byte[] bytes, String mimeType)
  • Method Details

    • getBytes

      public byte[] getBytes()
    • getMimeType

      public String getMimeType()
    • valueOf

      public static RawType valueOf(String value)
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • toFullString

      public String toFullString()
      Description copied from interface: Type
      Get a string representation that contains the whole internal representation of the type.

      The returned string could be consumed by the static 'valueOf(String)' method of the respective type to build a new type that is equal to this type.

      Specified by:
      toFullString in interface Type
      Returns:
      a full string representation of the type to be consumed by 'valueOf(String)'
    • format

      public String format(String pattern)
      Description copied from interface: Type
      Formats the value of this type according to a pattern (see Formatter).
      Specified by:
      format in interface Type
      Parameters:
      pattern - the pattern to use
      Returns:
      the formatted string
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(@Nullable Object obj)
      Overrides:
      equals in class Object