DBA Data[Home] [Help]

MDSYS.SDO_NET dependencies on SDO_NUMBER_ARRAY

Line 300: RETURN SDO_NUMBER_ARRAY DETERMINISTIC ;

296: RETURN NUMBER;
297:
298: -- return the in-link ids of a node
299: FUNCTION get_in_links(network IN VARCHAR2, node_id in number)
300: RETURN SDO_NUMBER_ARRAY DETERMINISTIC ;
301:
302: -- return the out-link ids of a node
303: FUNCTION get_out_links(network IN VARCHAR2, node_id in number)
304: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;

Line 304: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;

300: RETURN SDO_NUMBER_ARRAY DETERMINISTIC ;
301:
302: -- return the out-link ids of a node
303: FUNCTION get_out_links(network IN VARCHAR2, node_id in number)
304: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;
305:
306:
307: -- return the in-degree of a node
308: FUNCTION get_node_in_degree(network IN VARCHAR2, node_id in number)

Line 323: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;

319:
320:
321: -- return the child nodes of a given node
322: FUNCTION get_child_nodes(network IN VARCHAR2, node_id in number)
323: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;
324:
325: -- return the child links of a given link
326: FUNCTION get_child_links(network IN VARCHAR2, link_id in number)
327: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;

Line 327: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;

323: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;
324:
325: -- return the child links of a given link
326: FUNCTION get_child_links(network IN VARCHAR2, link_id in number)
327: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;
328:
329: -----------------
330: -- @deprecated --
331: -----------------

Line 334: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;

330: -- @deprecated --
331: -----------------
332: -- return the path links of a given path
333: FUNCTION get_links_in_path(network IN VARCHAR2, path_id in number)
334: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;
335:
336: -- return the path nodes of a given path
337: FUNCTION get_nodes_in_path(network IN VARCHAR2, path_id in number)
338: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;

Line 338: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;

334: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;
335:
336: -- return the path nodes of a given path
337: FUNCTION get_nodes_in_path(network IN VARCHAR2, path_id in number)
338: RETURN SDO_NUMBER_ARRAY DETERMINISTIC;
339:
340:
341: --
342: -- create xxx_network assumes the following naming convention

Line 917: RETURN SDO_NUMBER_ARRAY DETERMINISTIC ;

913: -- return the ids of isolated nodes
914: --
915:
916: FUNCTION get_isolated_nodes(network IN VARCHAR2)
917: RETURN SDO_NUMBER_ARRAY DETERMINISTIC ;
918:
919: --
920: -- return the ids of invalid nodes
921: --

Line 924: RETURN SDO_NUMBER_ARRAY DETERMINISTIC ;

920: -- return the ids of invalid nodes
921: --
922:
923: FUNCTION get_invalid_nodes(network IN VARCHAR2)
924: RETURN SDO_NUMBER_ARRAY DETERMINISTIC ;
925:
926:
927: --
928: -- return the ids of invalid links

Line 932: RETURN SDO_NUMBER_ARRAY DETERMINISTIC ;

928: -- return the ids of invalid links
929: --
930:
931: FUNCTION get_invalid_links(network IN VARCHAR2)
932: RETURN SDO_NUMBER_ARRAY DETERMINISTIC ;
933:
934: --
935: -- return the ids of invalid paths
936: --

Line 939: RETURN SDO_NUMBER_ARRAY DETERMINISTIC ;

935: -- return the ids of invalid paths
936: --
937:
938: FUNCTION get_invalid_paths(network IN VARCHAR2)
939: RETURN SDO_NUMBER_ARRAY DETERMINISTIC ;
940:
941:
942: -----------------
943: -- @deprecated --

Line 951: links IN SDO_NUMBER_ARRAY,

947: -- the seq no is indicated by the order in the given link array
948: --
949: PROCEDURE insert_path_link_info(network IN VARCHAR2,
950: path_id IN NUMBER,
951: links IN SDO_NUMBER_ARRAY,
952: is_simple IN BOOLEAN DEFAULT TRUE) ;
953:
954:
955: --

Line 1295: sequence_numbers IN SDO_NUMBER_ARRAY,

1291: -- Deletes the feature elements at the given sequence numbers.
1292: PROCEDURE DELETE_FEATURE_ELEMENTS_AT(
1293: feature_layer_id IN NUMBER,
1294: feature_id IN NUMBER,
1295: sequence_numbers IN SDO_NUMBER_ARRAY,
1296: delete_net_elems IN BOOLEAN DEFAULT FALSE);
1297:
1298: -- Remove the parent-child relationship for the input child features.
1299: PROCEDURE DELETE_CHILD_FEATURES(

Line 1309: sequence_numbers IN SDO_NUMBER_ARRAY);

1305: -- at the given sequence numbers.
1306: PROCEDURE DELETE_CHILD_FEATURES_AT(
1307: parent_layer_id IN NUMBER,
1308: parent_id IN NUMBER,
1309: sequence_numbers IN SDO_NUMBER_ARRAY);
1310:
1311: -- Deletes the features with the given feature IDs.
1312: -- If delete_net_elems is set to true, then all network elements
1313: -- that are referenced only by the input features are also deleted.

Line 1318: feature_ids IN SDO_NUMBER_ARRAY,

1314: -- If delete_children is set to true, then all child features
1315: -- that are referenced only by the input features are also deleted.
1316: PROCEDURE DELETE_FEATURES(
1317: feature_layer_id IN NUMBER,
1318: feature_ids IN SDO_NUMBER_ARRAY,
1319: delete_net_elems IN BOOLEAN DEFAULT FALSE,
1320: delete_children IN BOOLEAN DEFAULT FALSE);
1321:
1322: -- Deletes the dangling features in the given feature layer.

Line 1333: RETURN SDO_NUMBER_ARRAY;

1329: -- A dangling feature is a feature ths is not associated with any
1330: -- network elements.
1331: FUNCTION GET_DANGLING_FEATURES(
1332: feature_layer_id IN NUMBER)
1333: RETURN SDO_NUMBER_ARRAY;
1334:
1335: -- Deletes the phantom features in the given feature layer.
1336: -- A phantom feature is a feature that references nonexistent
1337: -- network elements.

Line 1346: RETURN SDO_NUMBER_ARRAY;

1342: -- A phantom feature is a feature that references nonexistent
1343: -- network elements.
1344: FUNCTION GET_PHANTOM_FEATURES(
1345: feature_layer_id IN NUMBER)
1346: RETURN SDO_NUMBER_ARRAY;
1347:
1348: -- Returns the nodes that are not referenced by
1349: -- any feature in any feature layer.
1350: FUNCTION GET_DANGLING_NODES(

Line 1352: RETURN SDO_NUMBER_ARRAY;

1348: -- Returns the nodes that are not referenced by
1349: -- any feature in any feature layer.
1350: FUNCTION GET_DANGLING_NODES(
1351: network IN VARCHAR2)
1352: RETURN SDO_NUMBER_ARRAY;
1353:
1354: -- Returns the links that are not referenced by
1355: -- any feature in any feature layer.
1356: FUNCTION GET_DANGLING_LINKS(

Line 1358: RETURN SDO_NUMBER_ARRAY;

1354: -- Returns the links that are not referenced by
1355: -- any feature in any feature layer.
1356: FUNCTION GET_DANGLING_LINKS(
1357: network IN VARCHAR2)
1358: RETURN SDO_NUMBER_ARRAY;
1359:
1360: -- Deletes the network nodes that are not referenced by
1361: -- any feature in any feature layer.
1362: PROCEDURE DELETE_DANGLING_NODES(

Line 1373: node_ids IN SDO_NUMBER_ARRAY)

1369:
1370: -- Returns the IDs of the features that references the given nodes.
1371: FUNCTION GET_FEATURES_ON_NODES(
1372: feature_layer_id IN NUMBER,
1373: node_ids IN SDO_NUMBER_ARRAY)
1374: RETURN SDO_NUMBER_ARRAY;
1375:
1376: -- Returns the IDs of the features that references the given links.
1377: FUNCTION GET_FEATURES_ON_LINKS(

Line 1374: RETURN SDO_NUMBER_ARRAY;

1370: -- Returns the IDs of the features that references the given nodes.
1371: FUNCTION GET_FEATURES_ON_NODES(
1372: feature_layer_id IN NUMBER,
1373: node_ids IN SDO_NUMBER_ARRAY)
1374: RETURN SDO_NUMBER_ARRAY;
1375:
1376: -- Returns the IDs of the features that references the given links.
1377: FUNCTION GET_FEATURES_ON_LINKS(
1378: feature_layer_id IN NUMBER,

Line 1379: link_ids IN SDO_NUMBER_ARRAY)

1375:
1376: -- Returns the IDs of the features that references the given links.
1377: FUNCTION GET_FEATURES_ON_LINKS(
1378: feature_layer_id IN NUMBER,
1379: link_ids IN SDO_NUMBER_ARRAY)
1380: RETURN SDO_NUMBER_ARRAY;
1381:
1382: -- Returns the feature layer ID and feature ID of the child features.
1383: FUNCTION GET_CHILD_FEATURE_IDS(

Line 1380: RETURN SDO_NUMBER_ARRAY;

1376: -- Returns the IDs of the features that references the given links.
1377: FUNCTION GET_FEATURES_ON_LINKS(
1378: feature_layer_id IN NUMBER,
1379: link_ids IN SDO_NUMBER_ARRAY)
1380: RETURN SDO_NUMBER_ARRAY;
1381:
1382: -- Returns the feature layer ID and feature ID of the child features.
1383: FUNCTION GET_CHILD_FEATURE_IDS(
1384: feature_layer_id IN NUMBER,

Line 1439: RETURN SDO_NUMBER_ARRAY;

1435: -- Find the child link IDs on the given link level of the child network
1436: FUNCTION GET_LINKS_IN_CHILD_NETWORK(
1437: network IN VARCHAR2,
1438: link_id IN NUMBER)
1439: RETURN SDO_NUMBER_ARRAY;
1440:
1441: -- Find the child node IDs on the given link level of the child network
1442: FUNCTION GET_NODES_IN_CHILD_NETWORK(
1443: network IN VARCHAR2,

Line 1445: RETURN SDO_NUMBER_ARRAY;

1441: -- Find the child node IDs on the given link level of the child network
1442: FUNCTION GET_NODES_IN_CHILD_NETWORK(
1443: network IN VARCHAR2,
1444: node_id IN NUMBER)
1445: RETURN SDO_NUMBER_ARRAY;
1446:
1447: -- Sends xml requests to the given URL, and returns the xml response.
1448: FUNCTION POST_XML(
1449: url IN VARCHAR2,