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

org.xmlnetwork.Tcpflag Maven / Gradle / Ivy

//
// 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.06.03 at 04:27:27 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