- Common ways to obtain PoseTrack$PoseFrame
private void myMethod () {PoseTrack$PoseFrame p =
PoseTrack poseTrack;poseTrack.frames[i].clone()
Object object;(PoseFrame) object.clone()
- Smart code suggestions by Codota
}
/** * This method creates a clone of the current object. * @return a clone of the current object */ @Override public PoseTrack clone() { try { PoseTrack result = (PoseTrack) super.clone(); result.times = this.times.clone(); if (this.frames != null) { result.frames = new PoseFrame[this.frames.length]; for (int i = 0; i < this.frames.length; ++i) { result.frames[i] = this.frames[i].clone(); } } return result; } catch (CloneNotSupportedException e) { throw new AssertionError(); } }
/** * This method creates a clone of the current object. * @return a clone of the current object */ @Override public PoseTrack clone() { try { PoseTrack result = (PoseTrack) super.clone(); result.times = this.times.clone(); if (this.frames != null) { result.frames = new PoseFrame[this.frames.length]; for (int i = 0; i < this.frames.length; ++i) { result.frames[i] = this.frames[i].clone(); } } return result; } catch (CloneNotSupportedException e) { throw new AssertionError(); } }
/** * This method creates a clone of the current object. * @return a clone of the current object */ @Override public PoseTrack clone() { try { PoseTrack result = (PoseTrack) super.clone(); result.times = this.times.clone(); if (this.frames != null) { result.frames = new PoseFrame[this.frames.length]; for (int i = 0; i < this.frames.length; ++i) { result.frames[i] = this.frames[i].clone(); } } return result; } catch (CloneNotSupportedException e) { throw new AssertionError(); } }