Skip navigation links
A B C D E F G H I K L M N O P R S T U W 

A

add(CborObject) - Method in class com.google.iot.cbor.CborArray
Appends the given object to this CborArray.
areAllKeysStrings() - Method in class com.google.iot.cbor.CborMap
Determines if all of the keys in this map are CborTextString instances.
ARRAY - Static variable in class com.google.iot.cbor.CborMajorType
CBOR major type for arrays of CBOR objects.

B

BASE64 - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged text string is a base64-encoded data.
BASE64URL - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged text string is a base64url-encoded data.
BIGFLOAT - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged array is a bigfloat.
bigIntegerValue() - Method in class com.google.iot.cbor.CborFloat
 
bigIntegerValue() - Method in interface com.google.iot.cbor.CborNumber
 
BIGNUM_NEG - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged byte string represents a negative bignum.
BIGNUM_POS - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged byte string represents a positive bignum.
BYTE_STRING - Static variable in class com.google.iot.cbor.CborMajorType
CBOR major type for byte strings (raw data).
byteArrayValue() - Method in class com.google.iot.cbor.CborByteString
Provides access to the underlying byte array value for this data item.
byteArrayValue() - Method in class com.google.iot.cbor.CborTextString
 
bytesParsed() - Method in interface com.google.iot.cbor.CborReader
Gets the number of bytes that have been parsed by this instance.
byteValueExact() - Method in interface com.google.iot.cbor.CborNumber
Returns the value of the integer as a byte.

C

CBOR_DATA_ITEM - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged byte string contains a CBOR-encoded data item.
CborArray - Class in com.google.iot.cbor
Class for representing CBOR array data items.
CborByteString - Class in com.google.iot.cbor
CBOR byte string object interface.
CborConversionException - Exception in com.google.iot.cbor
Checked datatype conversion exception.
CborConversionException() - Constructor for exception com.google.iot.cbor.CborConversionException
 
CborConversionException(String) - Constructor for exception com.google.iot.cbor.CborConversionException
 
CborConversionException(String, Throwable) - Constructor for exception com.google.iot.cbor.CborConversionException
 
CborConversionException(Throwable) - Constructor for exception com.google.iot.cbor.CborConversionException
 
CborException - Exception in com.google.iot.cbor
Checked exception superclass for CborTree-specific exceptions.
CborException() - Constructor for exception com.google.iot.cbor.CborException
 
CborException(String) - Constructor for exception com.google.iot.cbor.CborException
 
CborException(String, Throwable) - Constructor for exception com.google.iot.cbor.CborException
 
CborException(Throwable) - Constructor for exception com.google.iot.cbor.CborException
 
CborFloat - Class in com.google.iot.cbor
CBOR floating-point number object interface.
CborInteger - Class in com.google.iot.cbor
CBOR integer object interface.
CborMajorType - Class in com.google.iot.cbor
Contains constants for CBOR major types.
CborMap - Class in com.google.iot.cbor
Class for representing CBOR map data items.
CborNumber - Interface in com.google.iot.cbor
Interface for CBOR data items representing numbers.
CborObject - Class in com.google.iot.cbor
Base class for CBOR data items.
CborParseException - Exception in com.google.iot.cbor
Checked CBOR data parsing exception.
CborParseException() - Constructor for exception com.google.iot.cbor.CborParseException
 
CborParseException(String) - Constructor for exception com.google.iot.cbor.CborParseException
 
CborParseException(String, Throwable) - Constructor for exception com.google.iot.cbor.CborParseException
 
CborParseException(Throwable) - Constructor for exception com.google.iot.cbor.CborParseException
 
CborReader - Interface in com.google.iot.cbor
Interface for parsing CBOR data into CborObject instances.
CborRuntimeException - Exception in com.google.iot.cbor
Unchecked exception for CborTree-specific runtime errors.
CborRuntimeException() - Constructor for exception com.google.iot.cbor.CborRuntimeException
 
CborRuntimeException(String) - Constructor for exception com.google.iot.cbor.CborRuntimeException
 
CborRuntimeException(String, Throwable) - Constructor for exception com.google.iot.cbor.CborRuntimeException
 
CborRuntimeException(Throwable) - Constructor for exception com.google.iot.cbor.CborRuntimeException
 
CborSimple - Class in com.google.iot.cbor
CBOR simple value object class.
CborTag - Class in com.google.iot.cbor
Contains CBOR tag constants.
CborTextString - Class in com.google.iot.cbor
CBOR text string object interface.
CborWriter - Interface in com.google.iot.cbor
Interface for serializing CborObject instances into CBOR-encoded data.
clear() - Method in class com.google.iot.cbor.CborArray
Removes all items from this CborArray.
clear() - Method in class com.google.iot.cbor.CborMap
 
com.google.iot.cbor - package com.google.iot.cbor
CborTree: A Java API for decoding, manipulating, and encoding CBOR data items.
containsKey(String) - Method in class com.google.iot.cbor.CborMap
Convenience test method to allow the use of standard String objects when the keys in the map are all CborTextString.
copy() - Method in class com.google.iot.cbor.CborArray
Creates an independent, deep copy of this object.
copy() - Method in class com.google.iot.cbor.CborByteString
 
copy() - Method in class com.google.iot.cbor.CborFloat
 
copy() - Method in class com.google.iot.cbor.CborInteger
 
copy() - Method in class com.google.iot.cbor.CborMap
Creates an independent, deep copy of this CborMap.
copy() - Method in class com.google.iot.cbor.CborObject
Creates an independent, deep copy of this data item.
copy() - Method in class com.google.iot.cbor.CborSimple
 
copy() - Method in class com.google.iot.cbor.CborTextString
 
create() - Static method in class com.google.iot.cbor.CborArray
Creates an untagged empty CborArray.
create(int) - Static method in class com.google.iot.cbor.CborArray
Creates a tagged empty CborArray.
create(Iterable<CborObject>) - Static method in class com.google.iot.cbor.CborArray
Creates an untagged CborArray populated with the given CborObjects.
create(Iterable<CborObject>, int) - Static method in class com.google.iot.cbor.CborArray
Creates a tagged CborArray populated with the given CborObjects.
create(Iterable<CborObject>, int, boolean) - Static method in class com.google.iot.cbor.CborArray
Creates a tagged CborArray populated with the given CborObjects.
create(byte[][], long, long, int) - Static method in class com.google.iot.cbor.CborByteString
 
create(byte[], int, int, int) - Static method in class com.google.iot.cbor.CborByteString
 
create(byte[], int, int) - Static method in class com.google.iot.cbor.CborByteString
 
create(byte[]) - Static method in class com.google.iot.cbor.CborByteString
 
create(float) - Static method in class com.google.iot.cbor.CborFloat
Creates an untagged CborFloat instance that will be encoded as a four-byte float.
create(float, int) - Static method in class com.google.iot.cbor.CborFloat
Creates a tagged CborFloat instance that will be encoded as a four-byte float.
create(double) - Static method in class com.google.iot.cbor.CborFloat
Creates an untagged CborFloat instance that will be encoded as an eight-byte double-float.
create(double, int) - Static method in class com.google.iot.cbor.CborFloat
Creates a tagged CborFloat instance that will be encoded as a eight-byte double-float.
create(Number) - Static method in class com.google.iot.cbor.CborInteger
 
create(Number, int) - Static method in class com.google.iot.cbor.CborInteger
 
create(Number, int, Integer) - Static method in class com.google.iot.cbor.CborInteger
 
create(int) - Static method in class com.google.iot.cbor.CborMap
Creates an empty, tagged CborMap object.
create(Map<CborObject, CborObject>, int) - Static method in class com.google.iot.cbor.CborMap
Creates a tagged CborMap object populated with the keys and values from map .
create(Map<CborObject, CborObject>, int, boolean) - Static method in class com.google.iot.cbor.CborMap
Creates a tagged CborMap object populated with the keys and values from map .
create(Map<CborObject, CborObject>) - Static method in class com.google.iot.cbor.CborMap
Creates a CborMap object populated with the keys and values from map.
create() - Static method in class com.google.iot.cbor.CborMap
Creates an empty, untagged CborMap object.
create(int, int) - Static method in class com.google.iot.cbor.CborSimple
Method for obtaining a tagged instance for "simple values" that contains no data.
create(int) - Static method in class com.google.iot.cbor.CborSimple
Method for obtaining an untagged singleton instance for "simple values" that contains no data.
create(byte[][], int[], int[], int, boolean) - Static method in class com.google.iot.cbor.CborTextString
 
create(byte[], int, int, int, boolean) - Static method in class com.google.iot.cbor.CborTextString
 
create(byte[], int, int) - Static method in class com.google.iot.cbor.CborTextString
 
create(byte[]) - Static method in class com.google.iot.cbor.CborTextString
 
create(String, int) - Static method in class com.google.iot.cbor.CborTextString
 
create(String) - Static method in class com.google.iot.cbor.CborTextString
 
createFromByteArray(byte[], int, int) - Static method in interface com.google.iot.cbor.CborReader
Creates a CborReader instance from a byte array with starting offset and a total object count.
createFromByteArray(byte[], int) - Static method in interface com.google.iot.cbor.CborReader
Creates a CborReader instance from a byte array with starting offset.
createFromByteArray(byte[]) - Static method in interface com.google.iot.cbor.CborReader
Creates a CborReader instance from a byte array.
createFromByteBuffer(ByteBuffer) - Static method in interface com.google.iot.cbor.CborWriter
Creates a CborWriter instance that writes to a ByteBuffer.
createFromCborByteArray(byte[], int, int) - Static method in class com.google.iot.cbor.CborMap
Parses the given CBOR byte array into a CborMap object.
createFromCborByteArray(byte[]) - Static method in class com.google.iot.cbor.CborMap
Parses the given CBOR byte array into a CborMap object.
createFromCborByteArray(byte[], int, int) - Static method in class com.google.iot.cbor.CborObject
Creates a new CborObject from a CBOR-encoded byte array starting at a given offset.
createFromCborByteArray(byte[]) - Static method in class com.google.iot.cbor.CborObject
Creates a new CborObject from a CBOR-encoded byte array.
createFromInputStream(InputStream, int) - Static method in interface com.google.iot.cbor.CborReader
Creates a CborReader instance from an InputStream instance with a total object count.
createFromInputStream(InputStream) - Static method in interface com.google.iot.cbor.CborReader
Creates a CborReader instance from an InputStream instance.
createFromJavaObject(Iterable<?>) - Static method in class com.google.iot.cbor.CborArray
Converts an Iterable of Java objects to an untagged CborArray.
createFromJavaObject(Object[]) - Static method in class com.google.iot.cbor.CborArray
Converts an object array to an untagged CborArray.
createFromJavaObject(int[]) - Static method in class com.google.iot.cbor.CborArray
Converts an integer array to a CborArray of CborInteger objects.
createFromJavaObject(short[]) - Static method in class com.google.iot.cbor.CborArray
Converts a short array to a CborArray of CborInteger objects.
createFromJavaObject(long[]) - Static method in class com.google.iot.cbor.CborArray
Converts a long array to a CborArray of CborInteger objects.
createFromJavaObject(boolean[]) - Static method in class com.google.iot.cbor.CborArray
Converts a boolean array to a CborArray of CborSimple objects.
createFromJavaObject(float[]) - Static method in class com.google.iot.cbor.CborArray
Converts a float array to a CborArray of CborFloat objects.
createFromJavaObject(double[]) - Static method in class com.google.iot.cbor.CborArray
Converts a double array to a CborArray of CborFloat objects.
createFromJavaObject(Map<?, ?>) - Static method in class com.google.iot.cbor.CborMap
Converts the given Java Map into a CborMap object.
createFromJavaObject(Object) - Static method in class com.google.iot.cbor.CborObject
Creates a new CborObject based on the given Java object.
createFromJSONArray(JSONArray) - Static method in class com.google.iot.cbor.CborArray
Creates a CborArray from a given JSONArray.
createFromJSONObject(JSONObject) - Static method in class com.google.iot.cbor.CborMap
Creates a untagged CborMap object from the given JSONObject.
createFromOutputStream(OutputStream) - Static method in interface com.google.iot.cbor.CborWriter
Creates a CborWriter instance that writes to an OutputStream.
createHalf(float) - Static method in class com.google.iot.cbor.CborFloat
Creates an untagged CborFloat instance that will be encoded as a two-byte half-float.
createHalf(float, int) - Static method in class com.google.iot.cbor.CborFloat
Creates a tagged CborFloat instance that will be encoded as a two-byte half-float.

D

doubleValue() - Method in class com.google.iot.cbor.CborFloat
 
doubleValue() - Method in class com.google.iot.cbor.CborInteger
 
doubleValue() - Method in interface com.google.iot.cbor.CborNumber
Returns the value of this data item as a double.

E

entrySet() - Method in class com.google.iot.cbor.CborMap
 
equals(Object) - Method in class com.google.iot.cbor.CborArray
 
equals(Object) - Method in class com.google.iot.cbor.CborByteString
 
equals(Object) - Method in class com.google.iot.cbor.CborFloat
 
equals(Object) - Method in class com.google.iot.cbor.CborInteger
 
equals(Object) - Method in class com.google.iot.cbor.CborMap
 
equals(Object) - Method in class com.google.iot.cbor.CborSimple
 
equals(Object) - Method in class com.google.iot.cbor.CborTextString
 
EXPECTED_BASE16 - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged byte string is expected to be base16 when encoded as JSON.
EXPECTED_BASE64 - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged byte string is expected to be base64 when encoded as JSON.

F

FALSE - Static variable in class com.google.iot.cbor.CborSimple
CBOR simple value constant instance for "false".
floatValue() - Method in class com.google.iot.cbor.CborFloat
 
floatValue() - Method in class com.google.iot.cbor.CborInteger
 
floatValue() - Method in interface com.google.iot.cbor.CborNumber
Returns the value of this data item as a float.
FRACTION - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged array is a decimal fraction.

G

get(CborObject) - Method in class com.google.iot.cbor.CborMap
 
get(String) - Method in class com.google.iot.cbor.CborMap
Convenience getter method to allow the use of standard String objects when the keys in the map are all CborTextString.
getAdditionalInformation() - Method in class com.google.iot.cbor.CborArray
 
getAdditionalInformation() - Method in class com.google.iot.cbor.CborByteString
 
getAdditionalInformation() - Method in class com.google.iot.cbor.CborInteger
 
getAdditionalInformation() - Method in class com.google.iot.cbor.CborMap
 
getAdditionalInformation() - Method in class com.google.iot.cbor.CborObject
Returns the object's "additional information" value.
getAdditionalInformation() - Method in class com.google.iot.cbor.CborSimple
 
getAdditionalInformation() - Method in class com.google.iot.cbor.CborTextString
 
getMajorType() - Method in class com.google.iot.cbor.CborArray
Always returns CborMajorType.ARRAY.
getMajorType() - Method in class com.google.iot.cbor.CborByteString
 
getMajorType() - Method in class com.google.iot.cbor.CborFloat
 
getMajorType() - Method in class com.google.iot.cbor.CborInteger
 
getMajorType() - Method in class com.google.iot.cbor.CborMap
 
getMajorType() - Method in class com.google.iot.cbor.CborObject
Returns the object's "Major Type", as defined by RFC7049.
getMajorType() - Method in class com.google.iot.cbor.CborSimple
 
getMajorType() - Method in class com.google.iot.cbor.CborTextString
 
getTag() - Method in class com.google.iot.cbor.CborObject
Returns the tag for this object.
getTag() - Method in class com.google.iot.cbor.CborSimple
 
getValue() - Method in class com.google.iot.cbor.CborSimple
Returns the "simple value" associated with this object.

H

hashCode() - Method in class com.google.iot.cbor.CborArray
 
hashCode() - Method in class com.google.iot.cbor.CborByteString
 
hashCode() - Method in class com.google.iot.cbor.CborFloat
 
hashCode() - Method in class com.google.iot.cbor.CborInteger
 
hashCode() - Method in class com.google.iot.cbor.CborMap
 
hashCode() - Method in class com.google.iot.cbor.CborSimple
 
hashCode() - Method in class com.google.iot.cbor.CborTextString
 
hasRemainingDataItems() - Method in interface com.google.iot.cbor.CborReader
Determines if there are additional data items to parse.

I

intValueExact() - Method in interface com.google.iot.cbor.CborNumber
Returns the value of the integer as a int.
isEmpty() - Method in class com.google.iot.cbor.CborArray
Determines if this array is empty or not.
isEmpty() - Method in class com.google.iot.cbor.CborMap
 
isIndefiniteLength() - Method in class com.google.iot.cbor.CborArray
 
isIndefiniteLength() - Method in class com.google.iot.cbor.CborByteString
 
isIndefiniteLength() - Method in class com.google.iot.cbor.CborMap
 
isIndefiniteLength() - Method in class com.google.iot.cbor.CborTextString
 
isValid(long) - Static method in class com.google.iot.cbor.CborTag
Indicates if the given tag value is considered valid.
isValidJson() - Method in class com.google.iot.cbor.CborArray
 
isValidJson() - Method in class com.google.iot.cbor.CborByteString
 
isValidJson() - Method in class com.google.iot.cbor.CborFloat
 
isValidJson() - Method in class com.google.iot.cbor.CborInteger
 
isValidJson() - Method in class com.google.iot.cbor.CborMap
 
isValidJson() - Method in class com.google.iot.cbor.CborObject
Indicates if this data item can be losslessly converted to a JSON fragment.
isValidJson() - Method in class com.google.iot.cbor.CborSimple
 
isValidJson() - Method in class com.google.iot.cbor.CborTextString
 
iterator() - Method in class com.google.iot.cbor.CborArray
 

K

keySet() - Method in class com.google.iot.cbor.CborMap
 
keySetAsStrings() - Method in class com.google.iot.cbor.CborMap
Returns the key set as standard String objects instead of CborObject instances.

L

length(CborObject) - Static method in interface com.google.iot.cbor.CborWriter
Calculates the CBOR-encoded length of the given CborObject.
listValue() - Method in class com.google.iot.cbor.CborArray
Returns the underlying List object backing this CborArray.
longValue() - Method in class com.google.iot.cbor.CborFloat
 
longValue() - Method in class com.google.iot.cbor.CborInteger
Returns the value of the integer as a long.
longValue() - Method in interface com.google.iot.cbor.CborNumber
Returns the value of the integer as a long.

M

MAP - Static variable in class com.google.iot.cbor.CborMajorType
CBOR major type for associative maps of CBOR objects.
mapValue() - Method in class com.google.iot.cbor.CborMap
 
MAX_VALUE - Static variable in class com.google.iot.cbor.CborTag
The largest tag value supported by this implementation.

N

NEG_INTEGER - Static variable in class com.google.iot.cbor.CborMajorType
CBOR major type for negative integers.
NULL - Static variable in class com.google.iot.cbor.CborSimple
CBOR simple value constant instance for "null".

O

OTHER - Static variable in class com.google.iot.cbor.CborMajorType
CBOR major type for CBOR floating-point numbers and CBOR simple values.

P

POS_INTEGER - Static variable in class com.google.iot.cbor.CborMajorType
CBOR major type for positive integers.
put(String, CborObject) - Method in class com.google.iot.cbor.CborMap
Convenience setter method to allow the use of standard String objects when the keys in the map are all CborTextString.

R

readDataItem() - Method in interface com.google.iot.cbor.CborReader
Reads the next available data item as a CborObject.
REGEX - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged text string is a regular expression in Perl Compatible Regular Expressions (PCRE) / JavaScript syntax.
remove(CborObject) - Method in class com.google.iot.cbor.CborArray
Removes the given object from this CborArray.
remove(CborObject) - Method in class com.google.iot.cbor.CborMap
 
remove(String) - Method in class com.google.iot.cbor.CborMap
Convenience removal method to allow the use of standard String objects when the keys in the map are all CborTextString.

S

SELF_DESCRIBE_CBOR - Static variable in class com.google.iot.cbor.CborTag
CBOR tag for facilitating self-describing CBOR encodings.
shortValueExact() - Method in interface com.google.iot.cbor.CborNumber
Returns the value of the integer as a short.
size() - Method in class com.google.iot.cbor.CborArray
Indicates the number of items in this array.
size() - Method in class com.google.iot.cbor.CborMap
 
stringValue() - Method in class com.google.iot.cbor.CborTextString
 

T

TAG - Static variable in class com.google.iot.cbor.CborMajorType
CBOR major type for CBOR tags.
TEXT_STRING - Static variable in class com.google.iot.cbor.CborMajorType
CBOR major type for text strings.
TIME_DATE_STRING - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged string is a RFC3339-formatted timestamp.
TIMESTAMP_UNIX - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged integer represents the number of seconds since 1970-01-01T00:00Z.
toCborByteArray() - Method in class com.google.iot.cbor.CborObject
Convenience method to quickly obtaining a CBOR byte-encoding of this data item.
toJavaObject() - Method in class com.google.iot.cbor.CborArray
 
toJavaObject(Class<T>) - Method in class com.google.iot.cbor.CborArray
 
toJavaObject() - Method in class com.google.iot.cbor.CborByteString
 
toJavaObject(Class<T>) - Method in class com.google.iot.cbor.CborByteString
 
toJavaObject() - Method in class com.google.iot.cbor.CborFloat
 
toJavaObject(Class<T>) - Method in class com.google.iot.cbor.CborFloat
 
toJavaObject() - Method in class com.google.iot.cbor.CborInteger
 
toJavaObject(Class<T>) - Method in class com.google.iot.cbor.CborInteger
 
toJavaObject() - Method in class com.google.iot.cbor.CborMap
 
toJavaObject(Class<T>) - Method in class com.google.iot.cbor.CborMap
 
toJavaObject() - Method in class com.google.iot.cbor.CborObject
Converts the given data item into a standard java object representation.
toJavaObject(Class<T>) - Method in class com.google.iot.cbor.CborObject
Attempts to convert this data item to a java object with a specific class.
toJavaObject() - Method in class com.google.iot.cbor.CborSimple
 
toJavaObject(Class<T>) - Method in class com.google.iot.cbor.CborSimple
 
toJavaObject() - Method in class com.google.iot.cbor.CborTextString
 
toJavaObject(Class<T>) - Method in class com.google.iot.cbor.CborTextString
 
toJsonString() - Method in class com.google.iot.cbor.CborArray
 
toJsonString() - Method in class com.google.iot.cbor.CborByteString
 
toJsonString() - Method in class com.google.iot.cbor.CborFloat
 
toJsonString() - Method in class com.google.iot.cbor.CborInteger
 
toJsonString() - Method in class com.google.iot.cbor.CborMap
 
toJsonString() - Method in class com.google.iot.cbor.CborObject
Returns a representation of this data item as JSON text.
toJsonString() - Method in class com.google.iot.cbor.CborSimple
 
toJsonString() - Method in class com.google.iot.cbor.CborTextString
 
toNormalMap() - Method in class com.google.iot.cbor.CborMap
Converts the CborMap into a standard Java Map<String,Object> that is guaranteed to use String objects for keys.
toString(int) - Method in class com.google.iot.cbor.CborArray
 
toString(int) - Method in class com.google.iot.cbor.CborByteString
 
toString() - Method in class com.google.iot.cbor.CborByteString
 
toString(int) - Method in class com.google.iot.cbor.CborFloat
 
toString() - Method in class com.google.iot.cbor.CborFloat
 
toString(int) - Method in class com.google.iot.cbor.CborInteger
 
toString() - Method in class com.google.iot.cbor.CborInteger
 
toString(int) - Method in class com.google.iot.cbor.CborMap
 
toString() - Method in class com.google.iot.cbor.CborObject
Describes this data item using CBOR diagnostic notation.
toString(int) - Method in class com.google.iot.cbor.CborObject
Describes this data item using CBOR diagnostic notation at the given indentation level.
toString(int) - Method in class com.google.iot.cbor.CborSimple
 
toString() - Method in class com.google.iot.cbor.CborSimple
 
toString(int) - Method in class com.google.iot.cbor.CborTextString
 
toString() - Method in class com.google.iot.cbor.CborTextString
 
TRUE - Static variable in class com.google.iot.cbor.CborSimple
CBOR simple value constant instance for "true".
TYPE_DOUBLE - Static variable in class com.google.iot.cbor.CborFloat
Value of the "additional information" field when contained value is an eight-byte double-float.
TYPE_FLOAT - Static variable in class com.google.iot.cbor.CborFloat
Value of the "additional information" field when contained value is a four-byte float.
TYPE_HALF - Static variable in class com.google.iot.cbor.CborFloat
Value of the "additional information" field when contained value is a two-byte half-float.

U

UNDEFINED - Static variable in class com.google.iot.cbor.CborSimple
CBOR simple value constant instance for "undefined" values.
UNTAGGED - Static variable in class com.google.iot.cbor.CborTag
Indicates the absence of a CBOR tag.
URI - Static variable in class com.google.iot.cbor.CborTag
CBOR tag indicating that the tagged text string is a URI.

W

wrap(byte[][], int, boolean) - Static method in class com.google.iot.cbor.CborByteString
 
writeDataItem(CborObject) - Method in interface com.google.iot.cbor.CborWriter
Serializes a CborObject.
writeTag(int) - Method in interface com.google.iot.cbor.CborWriter
Serializes a CBOR tag.
A B C D E F G H I K L M N O P R S T U W 
Skip navigation links

Copyright © 2018–2023. All rights reserved.