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

com.glookast.commons.capture.VTRState Maven / Gradle / Ivy

Go to download

Helper classes with Jackson annotations for easy interfacing with Glookast Products

There is a newer version: 3.1.6
Show newest version
package com.glookast.commons.capture;

import com.fasterxml.jackson.annotation.JsonProperty;

public enum VTRState
{
    @JsonProperty("UNKNOWN")
    UNKNOWN,
    @JsonProperty("RECORDING")
    RECORDING,
    @JsonProperty("PLAYING")
    PLAYING,
    @JsonProperty("PAUSED")
    PAUSED,
    @JsonProperty("STOPPED")
    STOPPED,
    @JsonProperty("FAST_FORWARD")
    FAST_FORWARD,
    @JsonProperty("REWIND")
    REWIND,
    @JsonProperty("SHUTTLE_FORWARD")
    SHUTTLE_FORWARD,
    @JsonProperty("SHUTTLE_REVERSE")
    SHUTTLE_REVERSE,
    @JsonProperty("JOG_FORWARD")
    JOG_FORWARD,
    @JsonProperty("JOG_REVERSE")
    JOG_REVERSE,
    @JsonProperty("VAR_FORWARD")
    VAR_FORWARD,
    @JsonProperty("VAR_REVERSE")
    VAR_REVERSE,
    @JsonProperty("PREROLL")
    PREROLL,
    @JsonProperty("CUE_UP_COMPLETED")
    CUE_UP_COMPLETED,
    @JsonProperty("END_OF_TAPE")
    END_OF_TAPE,
    @JsonProperty("EJECTING")
    EJECTING,
    @JsonProperty("CASSETTE_OUT")
    CASSETTE_OUT
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy