API Documentation > Classes > Class PatternStatus
Class PatternStatus

package com.ptc.pfc.pfcFeature;

public class
PatternStatus
implements
jxenum


Description
This enumerated type specifies the pattern status of the feature.
Field Summary
static final int
_PATTERN_NONE
Integer value of enum value "PATTERN_NONE"
A feature does not belong to any pattern.
static final PatternStatus
PATTERN_NONE
Object value of enum value "PATTERN_NONE"
A feature does not belong to any pattern.
static final int
_PATTERN_LEADER
Integer value of enum value "PATTERN_LEADER"
A feature is leader of the pattern.
static final PatternStatus
PATTERN_LEADER
Object value of enum value "PATTERN_LEADER"
A feature is leader of the pattern.
static final int
_PATTERN_MEMBER
Integer value of enum value "PATTERN_MEMBER"
A feature is member of the pattern.
static final PatternStatus
PATTERN_MEMBER
Object value of enum value "PATTERN_MEMBER"
A feature is member of the pattern.
static final int
_PATTERN_HEADER
Integer value of enum value "PATTERN_HEADER"
A feature is header of the pattern.
static final PatternStatus
PATTERN_HEADER
Object value of enum value "PATTERN_HEADER"
A feature is header of the pattern.
static final int
_PatternStatus_null
Enum null value.
Method Summary
FromInt (int value)
Creates enum object from an integer.
FromInt (Integer value)
Creates enum object from an integer object.
int
Returns enum object value as an integer.
Method Detail
getValue
int
getValue
()
Returns enum object value as an integer.
Returns:
Integer enum value.
FromInt
FromInt
(int value)
Creates enum object from an integer.
Parameters:
value
Input integer value.
Returns:
Enum value object.
FromInt
FromInt
(Integer value)
Creates enum object from an integer object.
Parameters:
value
Input integer object.
Returns:
Enum value object.
Was this helpful?