001package org.anarres.qemu.qapi.api;
002
003import com.fasterxml.jackson.annotation.JsonProperty;
004import com.fasterxml.jackson.annotation.JsonValue;
005import javax.annotation.CheckForNull;
006import javax.annotation.Nonnull;
007
008/**
009 * Autogenerated class.
010 *
011 * <pre>QApiEnumDescriptor{name=RockerPortDuplex, data=[half, full], fields=null}</pre>
012 */
013// QApiEnumDescriptor{name=RockerPortDuplex, data=[half, full], fields=null}
014public enum RockerPortDuplex {
015        half("half"),
016        full("full"),
017        __UNKNOWN("<unknown>");
018
019        private final java.lang.String jsonValue;
020
021        /* pp */ RockerPortDuplex(@Nonnull java.lang.String jsonValue) {
022                this.jsonValue = jsonValue;
023        }
024
025        @JsonValue
026        public java.lang.String getJsonValue() {
027                return jsonValue;
028        }
029}