Library | Package Java Toolkit

Class UDFAssemblyIntersections

package com.ptc.pfc.pfcUDFCreate;

public class UDFAssemblyIntersections
  implements jxobject



Description

This class defines a sequence of assembly intersections.

The user can access elements by their integer index (position) in the list. Sequence provides methods for positional (indexed) access to its elements. Sequences are zero based.



Method Summary
static UDFAssemblyIntersectionscreate ()
    Creates a new empty sequence.
/*optional*/ UDFAssemblyIntersectionget (int idx)
    Returns the value of the sequence element with the specified index. If the index is out of range, this method throws exception cipXInvalidSeqIndex.
intgetarraysize ()
    Returns current number of elements in the sequence.
voidinsert (int idx, /*optional*/ UDFAssemblyIntersection value)
    Inserts an element with the specified value in front of the sequence element with the specified index. If the index is out of range, the sequence is expanded to include this index.
voidinsertseq (int idx, UDFAssemblyIntersections seq)
    Inserts elements from the list passed as the second argument in front of the sequence element with the specified index. If the index is out of range, the sequence is expanded to include this index.
voidremoverange (int frominc, int toexcl)
    Removes elements in the specified range from the sequence. The first argument specifies the index of the first element to be removed. The second argument specifies the index of the element immediately after the last in the range to be removed.
voidset (int idx, /*optional*/ UDFAssemblyIntersection value)
    Assigns a value to the sequence element with the specified index. If the index is out of range, the sequence is expanded to include this index.

Method Detail

getarraysize

intgetarraysize ()


    Returns current number of elements in the sequence.
Returns:
Current number of elements.


get

/*optional*/ UDFAssemblyIntersectionget (int idx)


    Returns the value of the sequence element with the specified index. If the index is out of range, this method throws exception cipXInvalidSeqIndex.
Parameters:
idx
Index of requested sequence element.
Returns:
Value of the element at the specified index.


set

voidset (int idx, /*optional*/ UDFAssemblyIntersection value)


    Assigns a value to the sequence element with the specified index. If the index is out of range, the sequence is expanded to include this index.
Parameters:
idx
Index of the element to be assigned.
value
Value to be assigned.
Returns:


removerange

voidremoverange (int frominc, int toexcl)


    Removes elements in the specified range from the sequence. The first argument specifies the index of the first element to be removed. The second argument specifies the index of the element immediately after the last in the range to be removed.
Parameters:
frominc
Index of the first element to be removed.
toexcl
Index of the element following the last element to be removed.
Returns:


insert

voidinsert (int idx, /*optional*/ UDFAssemblyIntersection value)


    Inserts an element with the specified value in front of the sequence element with the specified index. If the index is out of range, the sequence is expanded to include this index.
Manual References:
Features: Creating a Custom UDF, Features: Creating a Custom UDF
Parameters:
idx
Index for an element to be inserted at.
value
Value to be inserted.
Returns:


insertseq

voidinsertseq (int idx, UDFAssemblyIntersections seq)


    Inserts elements from the list passed as the second argument in front of the sequence element with the specified index. If the index is out of range, the sequence is expanded to include this index.
Parameters:
idx
Index at which the first new element should be inserted.
seq
Sequence of elements to be inserted.
Returns:


create

static UDFAssemblyIntersectionscreate ()


    Creates a new empty sequence.
Manual References:
Features: Creating a Custom UDF
Returns:
Created sequence.