com.kenai.constantine.platform.openbsd
Enum Sysconf

java.lang.Object
  extended by java.lang.Enum<Sysconf>
      extended by com.kenai.constantine.platform.openbsd.Sysconf
All Implemented Interfaces:
Constant, java.io.Serializable, java.lang.Comparable<Sysconf>

public enum Sysconf
extends java.lang.Enum<Sysconf>
implements Constant


Enum Constant Summary
_SC_2_C_BIND
           
_SC_2_C_DEV
           
_SC_2_CHAR_TERM
           
_SC_2_FORT_DEV
           
_SC_2_FORT_RUN
           
_SC_2_LOCALEDEF
           
_SC_2_SW_DEV
           
_SC_2_UPE
           
_SC_2_VERSION
           
_SC_ARG_MAX
           
_SC_BC_BASE_MAX
           
_SC_BC_DIM_MAX
           
_SC_BC_SCALE_MAX
           
_SC_BC_STRING_MAX
           
_SC_CHILD_MAX
           
_SC_CLK_TCK
           
_SC_COLL_WEIGHTS_MAX
           
_SC_EXPR_NEST_MAX
           
_SC_FSYNC
           
_SC_JOB_CONTROL
           
_SC_LINE_MAX
           
_SC_NGROUPS_MAX
           
_SC_OPEN_MAX
           
_SC_PAGE_SIZE
           
_SC_PAGESIZE
           
_SC_RE_DUP_MAX
           
_SC_SAVED_IDS
           
_SC_SEM_NSEMS_MAX
           
_SC_SEM_VALUE_MAX
           
_SC_STREAM_MAX
           
_SC_TZNAME_MAX
           
_SC_VERSION
           
_SC_XOPEN_SHM
           
 
Field Summary
static long MAX_VALUE
           
static long MIN_VALUE
           
 
Method Summary
 int value()
           
static Sysconf valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Sysconf[] 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
 
Methods inherited from interface com.kenai.constantine.Constant
name
 

Enum Constant Detail

_SC_ARG_MAX

public static final Sysconf _SC_ARG_MAX

_SC_CHILD_MAX

public static final Sysconf _SC_CHILD_MAX

_SC_CLK_TCK

public static final Sysconf _SC_CLK_TCK

_SC_NGROUPS_MAX

public static final Sysconf _SC_NGROUPS_MAX

_SC_OPEN_MAX

public static final Sysconf _SC_OPEN_MAX

_SC_JOB_CONTROL

public static final Sysconf _SC_JOB_CONTROL

_SC_SAVED_IDS

public static final Sysconf _SC_SAVED_IDS

_SC_VERSION

public static final Sysconf _SC_VERSION

_SC_BC_BASE_MAX

public static final Sysconf _SC_BC_BASE_MAX

_SC_BC_DIM_MAX

public static final Sysconf _SC_BC_DIM_MAX

_SC_BC_SCALE_MAX

public static final Sysconf _SC_BC_SCALE_MAX

_SC_BC_STRING_MAX

public static final Sysconf _SC_BC_STRING_MAX

_SC_COLL_WEIGHTS_MAX

public static final Sysconf _SC_COLL_WEIGHTS_MAX

_SC_EXPR_NEST_MAX

public static final Sysconf _SC_EXPR_NEST_MAX

_SC_LINE_MAX

public static final Sysconf _SC_LINE_MAX

_SC_RE_DUP_MAX

public static final Sysconf _SC_RE_DUP_MAX

_SC_2_VERSION

public static final Sysconf _SC_2_VERSION

_SC_2_C_BIND

public static final Sysconf _SC_2_C_BIND

_SC_2_C_DEV

public static final Sysconf _SC_2_C_DEV

_SC_2_CHAR_TERM

public static final Sysconf _SC_2_CHAR_TERM

_SC_2_FORT_DEV

public static final Sysconf _SC_2_FORT_DEV

_SC_2_FORT_RUN

public static final Sysconf _SC_2_FORT_RUN

_SC_2_LOCALEDEF

public static final Sysconf _SC_2_LOCALEDEF

_SC_2_SW_DEV

public static final Sysconf _SC_2_SW_DEV

_SC_2_UPE

public static final Sysconf _SC_2_UPE

_SC_STREAM_MAX

public static final Sysconf _SC_STREAM_MAX

_SC_TZNAME_MAX

public static final Sysconf _SC_TZNAME_MAX

_SC_PAGESIZE

public static final Sysconf _SC_PAGESIZE

_SC_FSYNC

public static final Sysconf _SC_FSYNC

_SC_SEM_NSEMS_MAX

public static final Sysconf _SC_SEM_NSEMS_MAX

_SC_SEM_VALUE_MAX

public static final Sysconf _SC_SEM_VALUE_MAX

_SC_PAGE_SIZE

public static final Sysconf _SC_PAGE_SIZE

_SC_XOPEN_SHM

public static final Sysconf _SC_XOPEN_SHM
Field Detail

MIN_VALUE

public static final long MIN_VALUE
See Also:
Constant Field Values

MAX_VALUE

public static final long MAX_VALUE
See Also:
Constant Field Values
Method Detail

values

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

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

valueOf

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

value

public final int value()
Specified by:
value in interface Constant