info.freelibrary.iiif.presentation.v3.TemporalContentResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jiiify-presentation-v3 Show documentation
Show all versions of jiiify-presentation-v3 Show documentation
A Java Library for version 3 of the IIIF Presentation API
package info.freelibrary.iiif.presentation.v3;
/**
* An interface for content resources that have temporal characteristics.
*
* @param A type of temporal content resource
*/
public interface TemporalContentResource> extends ContentResource {
/**
* Gets the duration of this content resource.
*
* @return The duration of this content resource
*/
float getDuration();
/**
* Sets the duration of this content resource.
*
* @param aDuration The duration of this content resource
* @return This content resource
*/
T setDuration(Number aDuration);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy