jcfunc.parameters
Enum paramSVS

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

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

Enum paramSVS contains returned values for control function CF.SVS.


Enum Constant Summary
Eight_TI
          8 lines per 25,4 mm
Four_TH
          4 lines per 30,0 mm
Four_TI
          4 lines per 25,4 mm
Nonstandard
          Don't define in Standart
Six_TH
          6 lines per 30,0 mm
Six_TI
          6 lines per 25,4 mm
Three_TH
          3 lines per 30,0 mm
Three_TI
          3 lines per 25,4 mm
Twelve_TH
          12 lines per 30,0 mm
Twelve_TI
          12 lines per 25,4 mm
Two_TI
          2 lines per 25,4 mm
 
Method Summary
static paramSVS getEnumValue(int val)
          Returns enum-value by int-value.
static int getIntValue(paramSVS val)
          Returns int-value, which is corresponded to enum-value.
static paramSVS valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static paramSVS[] 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

Six_TI

public static final paramSVS Six_TI
6 lines per 25,4 mm


Four_TI

public static final paramSVS Four_TI
4 lines per 25,4 mm


Three_TI

public static final paramSVS Three_TI
3 lines per 25,4 mm


Twelve_TI

public static final paramSVS Twelve_TI
12 lines per 25,4 mm


Eight_TI

public static final paramSVS Eight_TI
8 lines per 25,4 mm


Six_TH

public static final paramSVS Six_TH
6 lines per 30,0 mm


Four_TH

public static final paramSVS Four_TH
4 lines per 30,0 mm


Three_TH

public static final paramSVS Three_TH
3 lines per 30,0 mm


Twelve_TH

public static final paramSVS Twelve_TH
12 lines per 30,0 mm


Two_TI

public static final paramSVS Two_TI
2 lines per 25,4 mm


Nonstandard

public static final paramSVS Nonstandard
Don't define in Standart

Method Detail

values

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

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

valueOf

public static paramSVS 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(paramSVS val)
Returns int-value, which is corresponded to enum-value.

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

getEnumValue

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

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