Uses of Enum Class
com.lucimber.dbus.type.TypeCode
Packages that use TypeCode
Package
Description
D-Bus message decoding infrastructure for converting wire format to Java objects.
Type-safe D-Bus data types and containers providing compile-time marshalling safety.
-
Uses of TypeCode in com.lucimber.dbus.codec.decoder
Methods in com.lucimber.dbus.codec.decoder with parameters of type TypeCodeModifier and TypeMethodDescriptionboolean
Checks if a decoder is available for the specified type code.boolean
DecoderFactory.createDecoder
(TypeCode typeCode) Creates a decoder for the specified D-Bus type code.DefaultDecoderFactory.createDecoder
(TypeCode typeCode) static <R extends DBusBasicType>
DecoderResult<R>DecoderUtils.decodeBasicType
(TypeCode code, ByteBuffer buffer, int offset) Decodes a D-Bus basic type from the buffer.void
DefaultDecoderFactory.registerDecoder
(TypeCode typeCode, DefaultDecoderFactory.DecoderCreator creator) Registers a custom decoder creator for a specific type code. -
Uses of TypeCode in com.lucimber.dbus.type
Methods in com.lucimber.dbus.type that return TypeCodeModifier and TypeMethodDescriptionType.getCode()
Gets the type's related code.static TypeCode
Returns the enum constant of this class with the specified name.static TypeCode[]
TypeCode.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.lucimber.dbus.type that return types with arguments of type TypeCodeModifier and TypeMethodDescriptionTypeUtils.getCodeFromChar
(char c) Gets the type's code from its char.Methods in com.lucimber.dbus.type with parameters of type TypeCodeModifier and TypeMethodDescriptionTypeUtils.getTypeFromCode
(TypeCode code) Gets the type from its type code.