com.acesoft.aceoffix.wordwriter
Enum WdUnderline

java.lang.Object
  extended by java.lang.Enum<WdUnderline>
      extended by com.acesoft.aceoffix.wordwriter.WdUnderline
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WdUnderline>

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

Specifies the type of underline applied to the font defined in Microsoft Word.

Version:
5.0
Author:
Acesoft Corporation

Enum Constant Summary
wdUnderlineDash
          Dashes.
wdUnderlineDashHeavy
          Heavy dashes.
wdUnderlineDashLong
          Long dashes.
wdUnderlineDashLongHeavy
          Long heavy dashes.
wdUnderlineDotDash
          Alternating dots and dashes.
wdUnderlineDotDashHeavy
          Alternating heavy dots and heavy dashes.
wdUnderlineDotDotDash
          An alternating dot-dot-dash pattern.
wdUnderlineDotDotDashHeavy
          An alternating heavy dot-dot-dash pattern.
wdUnderlineDotted
          Dots.
wdUnderlineDottedHeavy
          Heavy dots.
wdUnderlineDouble
          A double line.
wdUnderlineNone
          No underline.
wdUnderlineSingle
          A single line.
wdUnderlineThick
          A single thick line.
wdUnderlineWavy
          A single wavy line.
wdUnderlineWavyDouble
          A double wavy line.
wdUnderlineWavyHeavy
          A heavy wavy line.
wdUnderlineWords
          Underline individual words only.
 
Method Summary
static WdUnderline valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WdUnderline[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

wdUnderlineNone

public static final WdUnderline wdUnderlineNone
No underline.


wdUnderlineSingle

public static final WdUnderline wdUnderlineSingle
A single line.


wdUnderlineWords

public static final WdUnderline wdUnderlineWords
Underline individual words only.


wdUnderlineDouble

public static final WdUnderline wdUnderlineDouble
A double line.


wdUnderlineDotted

public static final WdUnderline wdUnderlineDotted
Dots.


wdUnderlineThick

public static final WdUnderline wdUnderlineThick
A single thick line.


wdUnderlineDash

public static final WdUnderline wdUnderlineDash
Dashes.


wdUnderlineDotDash

public static final WdUnderline wdUnderlineDotDash
Alternating dots and dashes.


wdUnderlineDotDotDash

public static final WdUnderline wdUnderlineDotDotDash
An alternating dot-dot-dash pattern.


wdUnderlineWavy

public static final WdUnderline wdUnderlineWavy
A single wavy line.


wdUnderlineDottedHeavy

public static final WdUnderline wdUnderlineDottedHeavy
Heavy dots.


wdUnderlineDashHeavy

public static final WdUnderline wdUnderlineDashHeavy
Heavy dashes.


wdUnderlineDotDashHeavy

public static final WdUnderline wdUnderlineDotDashHeavy
Alternating heavy dots and heavy dashes.


wdUnderlineDotDotDashHeavy

public static final WdUnderline wdUnderlineDotDotDashHeavy
An alternating heavy dot-dot-dash pattern.


wdUnderlineWavyHeavy

public static final WdUnderline wdUnderlineWavyHeavy
A heavy wavy line.


wdUnderlineDashLong

public static final WdUnderline wdUnderlineDashLong
Long dashes.


wdUnderlineWavyDouble

public static final WdUnderline wdUnderlineWavyDouble
A double wavy line.


wdUnderlineDashLongHeavy

public static final WdUnderline wdUnderlineDashLongHeavy
Long heavy dashes.

Method Detail

values

public static WdUnderline[] 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 (WdUnderline c : WdUnderline.values())
    System.out.println(c);

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

valueOf

public static WdUnderline 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