
io.qt.internal.PropertyAttributes 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.internal;
public final class PropertyAttributes extends io.qt.QFlags {
private static final long serialVersionUID = 0x8dcb5758239e30bcL;
/**
* {@inheritDoc}
*/
public PropertyAttributes(PropertyFlags ... args){
super(args);
}
/**
* {@inheritDoc}
*/
public PropertyAttributes(int value) {
super(value);
}
/**
* {@inheritDoc}
*/
@Override
public final PropertyAttributes combined(PropertyFlags e){
return new PropertyAttributes(value() | e.value());
}
/**
* {@inheritDoc}
*/
@Override
public final PropertyFlags[] flags(){
return super.flags(PropertyFlags.values());
}
/**
* {@inheritDoc}
*/
@Override
public final PropertyAttributes clone(){
return new PropertyAttributes(value());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy