- All Superinterfaces:
QtAbstractEnumerator
- All Known Subinterfaces:
QtShortFlagEnumerator
- All Known Implementing Classes:
QMetaType.GenericShortEnumerator
,QNode.PropertyTrackingMode
public interface QtShortEnumerator extends QtAbstractEnumerator
The QtEnumerator interface servers as a base for all qint16 enum classes.
Its sole purpose is to unify the access to the integer
value of enumerators and flags using the value() method.
If you manually implement this class, your implementation must contain a method
with the following signature:
public static T resolve(short value);
where T is your subclass. This should return the enum value corresponding to the
specified int value.
-
Method Summary
Modifier and Type Method Description static <E extends QtShortEnumerator>
Comparator<E>comparator()
Creates a comparator for enumeration valuesClass<? extends QtShortEnumerator>
getDeclaringClass()
String
name()
int
ordinal()
default short
value()
This function should return a short value for the enum values of the enumeration that implements this interface.
-
Method Details
-
value
default short value()This function should return a short value for the enum values of the enumeration that implements this interface. -
ordinal
int ordinal()- Specified by:
ordinal
in interfaceQtAbstractEnumerator
- Returns:
- the ordinal of this enumeration constant
- See Also:
Enum.ordinal()
-
name
String name()- Specified by:
name
in interfaceQtAbstractEnumerator
- Returns:
- the name of this enum constant
- See Also:
Enum.name()
-
getDeclaringClass
Class<? extends QtShortEnumerator> getDeclaringClass()- Specified by:
getDeclaringClass
in interfaceQtAbstractEnumerator
- Returns:
- the Class object corresponding to this enum constant's enum type
- See Also:
Enum.getDeclaringClass()
-
comparator
Creates a comparator for enumeration values- Type Parameters:
E
-- Returns:
- comparator
-