Module qtjambi
Package io.qt

Interface QtByteEnumerator

All Superinterfaces:
QtAbstractEnumerator
All Known Subinterfaces:
QtByteFlagEnumerator
All Known Implementing Classes:
QCborSimpleType, QCborStreamReader.Type, QDtlsError, QKeyFrame.InterpolationType, QMetaType.GenericByteEnumerator, QNetworkAddressEntry.DnsEligibilityStatus, QtJambiInternal.Ownership

public interface QtByteEnumerator extends QtAbstractEnumerator
The QtEnumerator interface servers as a base for all qint8 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(byte value); where T is your subclass. This should return the enum value corresponding to the specified int value.