Library | Package Java Toolkit

Class ParameterLimitType

package com.ptc.pfc.pfcModelItem;

public class ParameterLimitType
  implements jxenum



Description

This enumerated type lists the possible parameter limits.



Field Summary
static final int_PARAMLIMIT_LESS_THAN
    Integer value of enum value "PARAMLIMIT_LESS_THAN"
    The parameter is required to be less than the indicated value.
static final ParameterLimitTypePARAMLIMIT_LESS_THAN
    Object value of enum value "PARAMLIMIT_LESS_THAN"
    The parameter is required to be less than the indicated value.
static final int_PARAMLIMIT_LESS_THAN_OR_EQUAL
    Integer value of enum value "PARAMLIMIT_LESS_THAN_OR_EQUAL"
    The parameter is required to be less than or equal to the indicated value.
static final ParameterLimitTypePARAMLIMIT_LESS_THAN_OR_EQUAL
    Object value of enum value "PARAMLIMIT_LESS_THAN_OR_EQUAL"
    The parameter is required to be less than or equal to the indicated value.
static final int_PARAMLIMIT_GREATER_THAN
    Integer value of enum value "PARAMLIMIT_GREATER_THAN"
    The parameter is required to be greater than the indicated value.
static final ParameterLimitTypePARAMLIMIT_GREATER_THAN
    Object value of enum value "PARAMLIMIT_GREATER_THAN"
    The parameter is required to be greater than the indicated value.
static final int_PARAMLIMIT_GREATER_THAN_OR_EQUAL
    Integer value of enum value "PARAMLIMIT_GREATER_THAN_OR_EQUAL"
    The parameter is required to be greater than or equal to the indicated value.
static final ParameterLimitTypePARAMLIMIT_GREATER_THAN_OR_EQUAL
    Object value of enum value "PARAMLIMIT_GREATER_THAN_OR_EQUAL"
    The parameter is required to be greater than or equal to the indicated value.
static final int_PARAMLIMIT_UNLIMITED
    Integer value of enum value "PARAMLIMIT_UNLIMITED"
    The parameter is required to have an unlimited value.
static final ParameterLimitTypePARAMLIMIT_UNLIMITED
    Object value of enum value "PARAMLIMIT_UNLIMITED"
    The parameter is required to have an unlimited value.
static final int_ParameterLimitType_null
    Enum null value.

Method Summary
static ParameterLimitTypeFromInt (int value)
    Creates enum object from an integer.
static ParameterLimitTypeFromInt (Integer value)
    Creates enum object from an integer object.
intgetValue ()
    Returns enum object value as an integer.

Method Detail

getValue

intgetValue ()


    Returns enum object value as an integer.
Returns:
Integer enum value.


FromInt

static ParameterLimitTypeFromInt (int value)


    Creates enum object from an integer.
Parameters:
value
Input integer value.
Returns:
Enum value object.


FromInt

static ParameterLimitTypeFromInt (Integer value)


    Creates enum object from an integer object.
Parameters:
value
Input integer object.
Returns:
Enum value object.