jcfunc.parameters
Enum paramPFS

java.lang.Object
  extended by java.lang.Enum<paramPFS>
      extended by jcfunc.parameters.paramPFS
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<paramPFS>

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

Enum paramPFS contains returned values for control function CF.PFS.


Enum Constant Summary
A4BasicTail
          tall basic A4 format
A4BasicWide
          wide basic A4 format
A4ExtendedTail
          tall extended A4 format
A4ExtendedWide
          wide extended A4 format
A4LongLines
          A4 long lines format
A4ShortLines
          A4 short lines format
B4LongLines
          B4 long lines format
B4ShortLines
          B4 short lines format
B5LongLines
          B5 long lines format
B5ShortLines
          B5 short lines format
NALegalTail
          tall North American legal format
NALegalWide
          wide North American legal format
NALetterTail
          tall North American letter format
NALetterWide
          wide North American letter format
Nonstandard
          Don't define in Standart
TextComTail
          tall basic text communication format
TextComWide
          wide basic text communication format
 
Method Summary
static paramPFS getEnumValue(int val)
          Returns enum-value by int-value.
static int getIntValue(paramPFS val)
          Returns int-value, which is corresponded to enum-value.
static paramPFS valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static paramPFS[] 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

TextComTail

public static final paramPFS TextComTail
tall basic text communication format


TextComWide

public static final paramPFS TextComWide
wide basic text communication format


A4BasicTail

public static final paramPFS A4BasicTail
tall basic A4 format


A4BasicWide

public static final paramPFS A4BasicWide
wide basic A4 format


NALetterTail

public static final paramPFS NALetterTail
tall North American letter format


NALetterWide

public static final paramPFS NALetterWide
wide North American letter format


A4ExtendedTail

public static final paramPFS A4ExtendedTail
tall extended A4 format


A4ExtendedWide

public static final paramPFS A4ExtendedWide
wide extended A4 format


NALegalTail

public static final paramPFS NALegalTail
tall North American legal format


NALegalWide

public static final paramPFS NALegalWide
wide North American legal format


A4ShortLines

public static final paramPFS A4ShortLines
A4 short lines format


A4LongLines

public static final paramPFS A4LongLines
A4 long lines format


B5ShortLines

public static final paramPFS B5ShortLines
B5 short lines format


B5LongLines

public static final paramPFS B5LongLines
B5 long lines format


B4ShortLines

public static final paramPFS B4ShortLines
B4 short lines format


B4LongLines

public static final paramPFS B4LongLines
B4 long lines format


Nonstandard

public static final paramPFS Nonstandard
Don't define in Standart

Method Detail

values

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

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

valueOf

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

getIntValue

public static int getIntValue(paramPFS val)
Returns int-value, which is corresponded to enum-value.

Parameters:
val - enum-value
Returns:
int-value

getEnumValue

public static paramPFS getEnumValue(int val)
Returns enum-value by int-value.

Parameters:
val - int-value
Returns:
enum-value