org.xmlnetwork.Tcpflag Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Support an hardware description language to automatically
configure bindings.
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2008.05.20 at 11:59:14 PM CEST
//
package org.xmlnetwork;
import javax.xml.bind.annotation.XmlEnum;
/**
* Java class for tcpflag.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="tcpflag">
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="SYN"/>
* <enumeration value="ACK"/>
* <enumeration value="FIN"/>
* <enumeration value="RST"/>
* <enumeration value="PSH"/>
* <enumeration value="URG"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlEnum
public enum Tcpflag {
SYN,
ACK,
FIN,
RST,
PSH,
URG;
public String value() {
return name();
}
public static Tcpflag fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy