io.qt.qt3d.animation.QChannelComponent Maven / Gradle / Ivy
Show all versions of qtjambi-qt3danimation Show documentation
package io.qt.qt3d.animation;
import io.qt.*;
/**
* Java wrapper for Qt class Qt3DAnimation::QChannelComponent
*/
public class QChannelComponent extends QtObject
implements java.lang.Iterable,
java.lang.Cloneable
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* See Qt3DAnimation::QChannelComponent:: QChannelComponent()
*/
public QChannelComponent(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QChannelComponent instance);
/**
* See Qt3DAnimation::QChannelComponent:: QChannelComponent(QString)
*/
public QChannelComponent(java.lang.@NonNull String name){
super((QPrivateConstructor)null);
initialize_native(this, name);
}
private native static void initialize_native(QChannelComponent instance, java.lang.String name);
/**
* See Qt3DAnimation::QChannelComponent:: QChannelComponent(Qt3DAnimation::QChannelComponent)
*/
public QChannelComponent(io.qt.qt3d.animation.@NonNull QChannelComponent arg__1){
super((QPrivateConstructor)null);
initialize_native(this, arg__1);
}
private native static void initialize_native(QChannelComponent instance, io.qt.qt3d.animation.QChannelComponent arg__1);
/**
* See Qt3DAnimation::QChannelComponent:: appendKeyFrame(Qt3DAnimation::QKeyFrame)
*/
@QtUninvokable
public final void appendKeyFrame(io.qt.qt3d.animation.@StrictNonNull QKeyFrame kf){
java.util.Objects.requireNonNull(kf, "Argument 'kf': null not expected.");
appendKeyFrame_native_cref_Qt3DAnimation_QKeyFrame(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(kf));
}
@QtUninvokable
private native void appendKeyFrame_native_cref_Qt3DAnimation_QKeyFrame(long __this__nativeId, long kf);
/**
* See Qt3DAnimation::QChannelComponent:: begin()const
*/
@QtUninvokable
protected final io.qt.core.@NonNull QSequentialConstIterator begin(){
return begin_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native io.qt.core.QSequentialConstIterator begin_native_constfct(long __this__nativeId);
/**
* See Qt3DAnimation::QChannelComponent:: clearKeyFrames()
*/
@QtUninvokable
public final void clearKeyFrames(){
clearKeyFrames_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native void clearKeyFrames_native(long __this__nativeId);
/**
* See Qt3DAnimation::QChannelComponent:: end()const
*/
@QtUninvokable
protected final io.qt.core.@NonNull QSequentialConstIterator end(){
return end_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native io.qt.core.QSequentialConstIterator end_native_constfct(long __this__nativeId);
/**
* See Qt3DAnimation::QChannelComponent:: insertKeyFrame(int, Qt3DAnimation::QKeyFrame)
*/
@QtUninvokable
public final void insertKeyFrame(int index, io.qt.qt3d.animation.@StrictNonNull QKeyFrame kf){
java.util.Objects.requireNonNull(kf, "Argument 'kf': null not expected.");
insertKeyFrame_native_int_cref_Qt3DAnimation_QKeyFrame(QtJambi_LibraryUtilities.internal.nativeId(this), index, QtJambi_LibraryUtilities.internal.checkedNativeId(kf));
}
@QtUninvokable
private native void insertKeyFrame_native_int_cref_Qt3DAnimation_QKeyFrame(long __this__nativeId, int index, long kf);
/**
* See Qt3DAnimation::QChannelComponent:: keyFrameCount()const
*/
@QtUninvokable
public final int keyFrameCount(){
return keyFrameCount_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native int keyFrameCount_native_constfct(long __this__nativeId);
/**
* See Qt3DAnimation::QChannelComponent:: name()const
*/
@QtUninvokable
public final java.lang.@NonNull String name(){
return name_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native java.lang.String name_native_constfct(long __this__nativeId);
/**
* See Qt3DAnimation::QChannelComponent:: operator=(Qt3DAnimation::QChannelComponent)
*/
@QtUninvokable
public final void assign(io.qt.qt3d.animation.@NonNull QChannelComponent arg__1){
assign_native_cref_Qt3DAnimation_QChannelComponent(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1));
}
@QtUninvokable
private native void assign_native_cref_Qt3DAnimation_QChannelComponent(long __this__nativeId, long arg__1);
/**
* See operator==(Qt3DAnimation::QChannelComponent, Qt3DAnimation::QChannelComponent)
*/
@QtUninvokable
public final boolean equals(io.qt.qt3d.animation.@NonNull QChannelComponent rhs){
return equals_native_cref_Qt3DAnimation_QChannelComponent(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(rhs));
}
@QtUninvokable
private native boolean equals_native_cref_Qt3DAnimation_QChannelComponent(long __this__nativeId, long rhs);
/**
* See Qt3DAnimation::QChannelComponent:: removeKeyFrame(int)
*/
@QtUninvokable
public final void removeKeyFrame(int index){
removeKeyFrame_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
@QtUninvokable
private native void removeKeyFrame_native_int(long __this__nativeId, int index);
/**
* See Qt3DAnimation::QChannelComponent:: setName(QString)
*/
@QtUninvokable
public final void setName(java.lang.@NonNull String name){
setName_native_cref_QString(QtJambi_LibraryUtilities.internal.nativeId(this), name);
}
@QtUninvokable
private native void setName_native_cref_QString(long __this__nativeId, java.lang.String name);
/**
* Returns an iterator for this iterable object.
* @see #begin()
* @see #end()
*/
@Override
public java.util.@NonNull Iterator iterator() {
return begin().iterator();
}
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QChannelComponent(QPrivateConstructor p) { super(p); }
/**
* See operator==(Qt3DAnimation::QChannelComponent, Qt3DAnimation::QChannelComponent)
*/
@Override
@QtUninvokable
public boolean equals(Object other) {
if (other instanceof io.qt.qt3d.animation.QChannelComponent) {
return equals((io.qt.qt3d.animation.QChannelComponent) other);
}
return false;
}
/**
* Returns the objects's hash code computed by qHash(Qt3DAnimation::QChannelComponent)
.
*/
@QtUninvokable
@Override
public int hashCode() {
return hashCode_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@QtUninvokable
private native static int hashCode_native(long __this_nativeId);
/**
* Creates and returns a copy of this object.
*/
@QtUninvokable
@Override
public QChannelComponent clone() {
return clone_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private static native QChannelComponent clone_native(long __this_nativeId);
}