Package org.freedesktop.dbus.types
Class DBusListType
- java.lang.Object
-
- org.freedesktop.dbus.types.DBusListType
-
- All Implemented Interfaces:
ParameterizedType,Type
public class DBusListType extends Object implements ParameterizedType
The type of a list. Should be used whenever you need a Type variable for a list.
-
-
Constructor Summary
Constructors Constructor Description DBusListType(Type _v)Create a List 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
-
DBusListType
public DBusListType(Type _v)
Create a List type.- Parameters:
_v- Type of the list contents.
-
-
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
-
-