All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.javagl.jgltf.impl.v2.Animation Maven / Gradle / Ivy

The newest version!
/*
 * glTF JSON model
 * 
 * Do not modify this class. It is automatically generated
 * with JsonModelGen (https://github.com/javagl/JsonModelGen)
 * Copyright (c) 2016-2021 Marco Hutter - http://www.javagl.de
 */

package de.javagl.jgltf.impl.v2;

import java.util.ArrayList;
import java.util.List;


/**
 * A keyframe animation. 
 * 
 * Auto-generated for animation.schema.json 
 * 
 */
public class Animation
    extends GlTFChildOfRootProperty
{

    /**
     * An array of animation channels. An animation channel combines an 
     * animation sampler with a target property being animated. Different 
     * channels of the same animation **MUST NOT** have the same targets. 
     * (required)
* Minimum number of items: 1
* Array elements:
*   An animation channel combines an animation sampler with a * target property being animated. (optional) * */ private List channels; /** * An array of animation samplers. An animation sampler combines * timestamps with a sequence of output values and defines an * interpolation algorithm. (required)
* Minimum number of items: 1
* Array elements:
*   An animation sampler combines timestamps with a sequence * of output values and defines an interpolation algorithm. (optional) * */ private List samplers; /** * An array of animation channels. An animation channel combines an * animation sampler with a target property being animated. Different * channels of the same animation **MUST NOT** have the same targets. * (required)
* Minimum number of items: 1
* Array elements:
*   An animation channel combines an animation sampler with a * target property being animated. (optional) * * @param channels The channels to set * @throws NullPointerException If the given value is null * @throws IllegalArgumentException If the given value does not meet * the given constraints * */ public void setChannels(List channels) { if (channels == null) { throw new NullPointerException((("Invalid value for channels: "+ channels)+", may not be null")); } if (channels.size()< 1) { throw new IllegalArgumentException("Number of channels elements is < 1"); } this.channels = channels; } /** * An array of animation channels. An animation channel combines an * animation sampler with a target property being animated. Different * channels of the same animation **MUST NOT** have the same targets. * (required)
* Minimum number of items: 1
* Array elements:
*   An animation channel combines an animation sampler with a * target property being animated. (optional) * * @return The channels * */ public List getChannels() { return this.channels; } /** * Add the given channels. The channels of this instance will be replaced * with a list that contains all previous elements, and additionally the * new element. * * @param element The element * @throws NullPointerException If the given element is null * */ public void addChannels(AnimationChannel element) { if (element == null) { throw new NullPointerException("The element may not be null"); } List oldList = this.channels; List newList = new ArrayList(); if (oldList!= null) { newList.addAll(oldList); } newList.add(element); this.channels = newList; } /** * Remove the given channels. The channels of this instance will be * replaced with a list that contains all previous elements, except for * the removed one. * * @param element The element * @throws NullPointerException If the given element is null * */ public void removeChannels(AnimationChannel element) { if (element == null) { throw new NullPointerException("The element may not be null"); } List oldList = this.channels; List newList = new ArrayList(); if (oldList!= null) { newList.addAll(oldList); } newList.remove(element); this.channels = newList; } /** * An array of animation samplers. An animation sampler combines * timestamps with a sequence of output values and defines an * interpolation algorithm. (required)
* Minimum number of items: 1
* Array elements:
*   An animation sampler combines timestamps with a sequence * of output values and defines an interpolation algorithm. (optional) * * @param samplers The samplers to set * @throws NullPointerException If the given value is null * @throws IllegalArgumentException If the given value does not meet * the given constraints * */ public void setSamplers(List samplers) { if (samplers == null) { throw new NullPointerException((("Invalid value for samplers: "+ samplers)+", may not be null")); } if (samplers.size()< 1) { throw new IllegalArgumentException("Number of samplers elements is < 1"); } this.samplers = samplers; } /** * An array of animation samplers. An animation sampler combines * timestamps with a sequence of output values and defines an * interpolation algorithm. (required)
* Minimum number of items: 1
* Array elements:
*   An animation sampler combines timestamps with a sequence * of output values and defines an interpolation algorithm. (optional) * * @return The samplers * */ public List getSamplers() { return this.samplers; } /** * Add the given samplers. The samplers of this instance will be replaced * with a list that contains all previous elements, and additionally the * new element. * * @param element The element * @throws NullPointerException If the given element is null * */ public void addSamplers(AnimationSampler element) { if (element == null) { throw new NullPointerException("The element may not be null"); } List oldList = this.samplers; List newList = new ArrayList(); if (oldList!= null) { newList.addAll(oldList); } newList.add(element); this.samplers = newList; } /** * Remove the given samplers. The samplers of this instance will be * replaced with a list that contains all previous elements, except for * the removed one. * * @param element The element * @throws NullPointerException If the given element is null * */ public void removeSamplers(AnimationSampler element) { if (element == null) { throw new NullPointerException("The element may not be null"); } List oldList = this.samplers; List newList = new ArrayList(); if (oldList!= null) { newList.addAll(oldList); } newList.remove(element); this.samplers = newList; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy