Notation used in Ruby API documentation
Module: db
Description: This class represents the LayoutToNetlist::BuildNetHierarchyMode enum
This class is equivalent to the class LayoutToNetlist::BuildNetHierarchyMode
This enum is used for LayoutToNetlist#build_all_nets and LayoutToNetlist#build_net.
new BuildNetHierarchyMode ptr | new | (int i) | Creates an enum from an integer value |
new BuildNetHierarchyMode ptr | new | (string s) | Creates an enum from a string value |
[const] | bool | != | (const BuildNetHierarchyMode other) | Compares two enums for inequality |
[const] | bool | < | (const BuildNetHierarchyMode other) | Returns true if the first enum is less (in the enum symbol order) than the second |
[const] | bool | == | (const BuildNetHierarchyMode other) | Compares two enums |
[const] | string | inspect | Converts an enum to a visual string | |
[const] | int | to_i | Gets the integer value from the enum | |
[const] | string | to_s | Gets the symbolic string from an enum |
[static,const] | BuildNetHierarchyMode | BNH_Disconnected | This constant tells build_net and build_all_nets to produce local nets without connections to subcircuits (used for the "hier_mode" parameter). | |
[static,const] | BuildNetHierarchyMode | BNH_Flatten | This constant tells build_net and build_all_nets to flatten the nets (used for the "hier_mode" parameter). | |
[static,const] | BuildNetHierarchyMode | BNH_SubcircuitCells | This constant tells build_net and build_all_nets to produce a hierarchy of subcircuit cells per net (used for the "hier_mode" parameter). |
!= | Signature: [const] bool != (const BuildNetHierarchyMode other) Description: Compares two enums for inequality |
< | Signature: [const] bool < (const BuildNetHierarchyMode other) Description: Returns true if the first enum is less (in the enum symbol order) than the second |
== | Signature: [const] bool == (const BuildNetHierarchyMode other) Description: Compares two enums |
BNH_Disconnected | Signature: [static,const] BuildNetHierarchyMode BNH_Disconnected Description: This constant tells build_net and build_all_nets to produce local nets without connections to subcircuits (used for the "hier_mode" parameter). |
BNH_Flatten | Signature: [static,const] BuildNetHierarchyMode BNH_Flatten Description: This constant tells build_net and build_all_nets to flatten the nets (used for the "hier_mode" parameter). |
BNH_SubcircuitCells | Signature: [static,const] BuildNetHierarchyMode BNH_SubcircuitCells Description: This constant tells build_net and build_all_nets to produce a hierarchy of subcircuit cells per net (used for the "hier_mode" parameter). |
inspect | Signature: [const] string inspect Description: Converts an enum to a visual string Python specific notes: |
new | Signature: [static] new BuildNetHierarchyMode ptr new (int i) Description: Creates an enum from an integer value Python specific notes: |
Signature: [static] new BuildNetHierarchyMode ptr new (string s) Description: Creates an enum from a string value Python specific notes: | |
to_i | Signature: [const] int to_i Description: Gets the integer value from the enum |
to_s | Signature: [const] string to_s Description: Gets the symbolic string from an enum Python specific notes: |