API Documentation > Classes > Class AssemblyConfiguration
Class AssemblyConfiguration

package com.ptc.pfc.pfcExport;

public class
AssemblyConfiguration
implements
jxenum


Description
This enumerated type contains possible configurations of an exported model.
Not all configurations are supported for all export types. Use BaseSession.IsConfigurationSupported(ExportType, AssemblyConfiguration) to verify that the configuration is valid.
See Also:
Field Summary
static final int
_EXPORT_ASM_FLAT_FILE
Integer value of enum value "EXPORT_ASM_FLAT_FILE"
Export in a flat file.
EXPORT_ASM_FLAT_FILE
Object value of enum value "EXPORT_ASM_FLAT_FILE"
Export in a flat file.
static final int
_EXPORT_ASM_SINGLE_FILE
Integer value of enum value "EXPORT_ASM_SINGLE_FILE"
Export in a single file.
EXPORT_ASM_SINGLE_FILE
Object value of enum value "EXPORT_ASM_SINGLE_FILE"
Export in a single file.
static final int
_EXPORT_ASM_MULTI_FILES
Integer value of enum value "EXPORT_ASM_MULTI_FILES"
Export in multiple files.
EXPORT_ASM_MULTI_FILES
Object value of enum value "EXPORT_ASM_MULTI_FILES"
Export in multiple files.
static final int
_EXPORT_ASM_ASSEMBLY_PARTS
Integer value of enum value "EXPORT_ASM_ASSEMBLY_PARTS"
Export as an assembly and component parts.
EXPORT_ASM_ASSEMBLY_PARTS
Object value of enum value "EXPORT_ASM_ASSEMBLY_PARTS"
Export as an assembly and component parts.
static final int
_AssemblyConfiguration_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?