br.gov.ans.padroes.tiss.schemas
Enum StUF

java.lang.Object
  extended by java.lang.Enum<StUF>
      extended by br.gov.ans.padroes.tiss.schemas.StUF
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StUF>

public enum StUF
extends java.lang.Enum<StUF>

Java class for st_UF.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="st_UF">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <length value="2"/>
     <enumeration value="RS"/>
     <enumeration value="SC"/>
     <enumeration value="PR"/>
     <enumeration value="SP"/>
     <enumeration value="MG"/>
     <enumeration value="RJ"/>
     <enumeration value="ES"/>
     <enumeration value="MS"/>
     <enumeration value="MT"/>
     <enumeration value="GO"/>
     <enumeration value="TO"/>
     <enumeration value="PA"/>
     <enumeration value="AM"/>
     <enumeration value="RO"/>
     <enumeration value="RR"/>
     <enumeration value="AC"/>
     <enumeration value="DF"/>
     <enumeration value="BA"/>
     <enumeration value="SE"/>
     <enumeration value="CE"/>
     <enumeration value="PI"/>
     <enumeration value="PB"/>
     <enumeration value="RN"/>
     <enumeration value="AL"/>
     <enumeration value="MA"/>
     <enumeration value="PE"/>
     <enumeration value="AP"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AC
           
AL
           
AM
           
AP
           
BA
           
CE
           
DF
           
ES
           
GO
           
MA
           
MG
           
MS
           
MT
           
PA
           
PB
           
PE
           
PI
           
PR
           
RJ
           
RN
           
RO
           
RR
           
RS
           
SC
           
SE
           
SP
           
TO
           
 
Method Summary
static StUF fromValue(java.lang.String v)
           
 java.lang.String value()
           
static StUF valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StUF[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

RS

public static final StUF RS

SC

public static final StUF SC

PR

public static final StUF PR

SP

public static final StUF SP

MG

public static final StUF MG

RJ

public static final StUF RJ

ES

public static final StUF ES

MS

public static final StUF MS

MT

public static final StUF MT

GO

public static final StUF GO

TO

public static final StUF TO

PA

public static final StUF PA

AM

public static final StUF AM

RO

public static final StUF RO

RR

public static final StUF RR

AC

public static final StUF AC

DF

public static final StUF DF

BA

public static final StUF BA

SE

public static final StUF SE

CE

public static final StUF CE

PI

public static final StUF PI

PB

public static final StUF PB

RN

public static final StUF RN

AL

public static final StUF AL

MA

public static final StUF MA

PE

public static final StUF PE

AP

public static final StUF AP
Method Detail

values

public static StUF[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (StUF c : StUF.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static StUF valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public java.lang.String value()

fromValue

public static StUF fromValue(java.lang.String v)