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
* @since This class was introduced in Qt 6.0.
*/
public 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;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy