Package org.freedesktop.dbus.types
Class DBusStructType
- java.lang.Object
-
- org.freedesktop.dbus.types.DBusStructType
-
- All Implemented Interfaces:
ParameterizedType,Type
public class DBusStructType extends Object implements ParameterizedType
The type of a struct. Should be used whenever you need a Type variable for a struct.
-
-
Constructor Summary
Constructors Constructor Description DBusStructType(Type... _contents)Create a struct type.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Type[]getActualTypeArguments()TypegetOwnerType()TypegetRawType()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.reflect.Type
getTypeName
-
-
-
-
Constructor Detail
-
DBusStructType
public DBusStructType(Type... _contents)
Create a struct type.- Parameters:
_contents- The types contained in this struct.
-
-
Method Detail
-
getActualTypeArguments
public Type[] getActualTypeArguments()
- Specified by:
getActualTypeArgumentsin interfaceParameterizedType
-
getRawType
public Type getRawType()
- Specified by:
getRawTypein interfaceParameterizedType
-
getOwnerType
public Type getOwnerType()
- Specified by:
getOwnerTypein interfaceParameterizedType
-
-