com.esri.arcgisws
Class EsriFontWeight

java.lang.Object
  extended by java.lang.Enum
      extended by com.esri.arcgisws.EsriFontWeight
All Implemented Interfaces:
Serializable, Comparable

public final class EsriFontWeight
extends Enum

Java class for esriFontWeight.

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

 <simpleType name="esriFontWeight">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="normal"/>
     <enumeration value="bold"/>
     <enumeration value="bolder"/>
     <enumeration value="lighter"/>
   </restriction>
 </simpleType>
 

See Also:
Serialized Form

Field Summary
static EsriFontWeight BOLD
           
static EsriFontWeight BOLDER
           
static EsriFontWeight LIGHTER
           
static EsriFontWeight NORMAL
           
 
Constructor Summary
EsriFontWeight()
           
 
Method Summary
static EsriFontWeight fromString(String value)
          Deprecated. 
static EsriFontWeight fromValue(String v)
           
 String getValue()
           
 String toString()
           
static EsriFontWeight valueOf(String name)
           
static EsriFontWeight[] values()
           
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

NORMAL

public static final EsriFontWeight NORMAL

BOLD

public static final EsriFontWeight BOLD

BOLDER

public static final EsriFontWeight BOLDER

LIGHTER

public static final EsriFontWeight LIGHTER
Constructor Detail

EsriFontWeight

public EsriFontWeight()
Method Detail

values

public static final EsriFontWeight[] values()

valueOf

public static EsriFontWeight valueOf(String name)

getValue

public String getValue()

fromValue

public static EsriFontWeight fromValue(String v)

fromString

@Deprecated
public static EsriFontWeight fromString(String value)
Deprecated. 


toString

public String toString()
Overrides:
toString in class Enum