io.qt.core.QPartialOrdering Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi Show documentation
Show all versions of qtjambi Show documentation
QtJambi base module containing QtCore, QtGui and QtWidgets.
package io.qt.core;
import io.qt.*;
/**
* Represents the result of a comparison that allows for unordered results
* Java wrapper for Qt class QPartialOrdering
*/
public final class QPartialOrdering extends QtObject
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QPartialOrdering(QPrivateConstructor p) { super(p); }
/**
* See QPartialOrdering::Equivalent
*/
public static final int Equivalent = 0;
/**
*
*/
public static final int Greater = 1;
/**
*
*/
public static final int Less = -1;
/**
* See QPartialOrdering::Unordered
*/
public static final int Unordered = -127;
/**
*
*/
public static final int equivalent = 0;
/**
*
*/
public static final int greater = 1;
/**
*
*/
public static final int less = -1;
/**
*
*/
public static final int unordered = -127;
}