IRIS TestCdType

IRIS > IRIS XML

Under Development
as of April 11, 2023

Tree


+- root: TestCdType


Flattened

TestCdType

Java Code


package modelsiris;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for TestCdType.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * <p>
 * <pre>
 * <simpleType name="TestCdType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="T"/>
 *     <enumeration value="P"/>
 *   </restriction>
 * </simpleType>
 * </pre>
 * 
 */
@XmlType(name = "TestCdType", namespace = "urn:us:gov:treasury:irs:ir")
@XmlEnum
public enum TestCdType {

    T,
    P;

    public String value() {
        return name();
    }

    public static TestCdType fromValue(String v) {
        return valueOf(v);
    }

}

© Copyright 2023. All Rights Reserved.