com.acesoft.aceoffix.wordwriter
Enum WdLineWidth

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

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

The width of the border line.

Version:
5.0
Author:
Acesoft Corporation

Enum Constant Summary
wdLineWidth025pt
          0.25 points.
wdLineWidth050pt
          0.50 points.
wdLineWidth075pt
          0.75 points.
wdLineWidth100pt
          1.00 point.
wdLineWidth150pt
          1.5 points.
wdLineWidth225pt
          2.25 points.
wdLineWidth300pt
          3.00 points.
wdLineWidth450pt
          4.50 points.
wdLineWidth600pt
          6.00 points.
 
Method Summary
static WdLineWidth valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WdLineWidth[] 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

wdLineWidth025pt

public static final WdLineWidth wdLineWidth025pt
0.25 points.


wdLineWidth050pt

public static final WdLineWidth wdLineWidth050pt
0.50 points.


wdLineWidth075pt

public static final WdLineWidth wdLineWidth075pt
0.75 points.


wdLineWidth100pt

public static final WdLineWidth wdLineWidth100pt
1.00 point. This is the default value.


wdLineWidth150pt

public static final WdLineWidth wdLineWidth150pt
1.5 points.


wdLineWidth225pt

public static final WdLineWidth wdLineWidth225pt
2.25 points.


wdLineWidth300pt

public static final WdLineWidth wdLineWidth300pt
3.00 points.


wdLineWidth450pt

public static final WdLineWidth wdLineWidth450pt
4.50 points.


wdLineWidth600pt

public static final WdLineWidth wdLineWidth600pt
6.00 points.

Method Detail

values

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

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

valueOf

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