Notation used in Ruby API documentation
Module: db
Description: This class represents the NetlistCrossReference::Status enum
This class is equivalent to the class NetlistCrossReference::Status
new NetlistCrossReference::Status ptr | new | (int i) | Creates an enum from an integer value |
new NetlistCrossReference::Status ptr | new | (string s) | Creates an enum from a string value |
[const] | bool | != | (const NetlistCrossReference::Status other) | Compares two enums for inequality |
[const] | bool | != | (int other) | Compares an enum with an integer for inequality |
[const] | bool | < | (const NetlistCrossReference::Status other) | Returns true if the first enum is less (in the enum symbol order) than the second |
[const] | bool | < | (int other) | Returns true if the enum is less (in the enum symbol order) than the integer value |
[const] | bool | == | (const NetlistCrossReference::Status other) | Compares two enums |
[const] | bool | == | (int other) | Compares an enum with an integer value |
[const] | int | hash | Gets the hash value from the enum | |
[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] | NetlistCrossReference::Status | Match | Enum constant NetlistCrossReference::Match | |
[static,const] | NetlistCrossReference::Status | MatchWithWarning | Enum constant NetlistCrossReference::MatchWithWarning | |
[static,const] | NetlistCrossReference::Status | Mismatch | Enum constant NetlistCrossReference::Mismatch | |
[static,const] | NetlistCrossReference::Status | NoMatch | Enum constant NetlistCrossReference::NoMatch | |
[static,const] | NetlistCrossReference::Status | None | Enum constant NetlistCrossReference::None | |
[static,const] | NetlistCrossReference::Status | Skipped | Enum constant NetlistCrossReference::Skipped |
!= | (1) Signature: [const] bool != (const NetlistCrossReference::Status other) Description: Compares two enums for inequality |
(2) Signature: [const] bool != (int other) Description: Compares an enum with an integer for inequality | |
< | (1) Signature: [const] bool < (const NetlistCrossReference::Status other) Description: Returns true if the first enum is less (in the enum symbol order) than the second |
(2) Signature: [const] bool < (int other) Description: Returns true if the enum is less (in the enum symbol order) than the integer value | |
== | (1) Signature: [const] bool == (const NetlistCrossReference::Status other) Description: Compares two enums |
(2) Signature: [const] bool == (int other) Description: Compares an enum with an integer value | |
Match | Signature: [static,const] NetlistCrossReference::Status Match Description: Enum constant NetlistCrossReference::Match An exact match exists if this code is present. Python specific notes: |
MatchWithWarning | Signature: [static,const] NetlistCrossReference::Status MatchWithWarning Description: Enum constant NetlistCrossReference::MatchWithWarning If this code is present, a match was found but a warning is issued. For nets, this means that the choice is ambiguous and one, unspecific candidate has been chosen. For devices, this means a device match was established, but parameters or the device class are not matching exactly. Python specific notes: |
Mismatch | Signature: [static,const] NetlistCrossReference::Status Mismatch Description: Enum constant NetlistCrossReference::Mismatch This code means there is a match candidate, but exact identity could not be confirmed. Python specific notes: |
NoMatch | Signature: [static,const] NetlistCrossReference::Status NoMatch Description: Enum constant NetlistCrossReference::NoMatch If this code is present, no match could be found. There is also 'Mismatch' which means there is a candidate, but exact identity could not be confirmed. Python specific notes: |
None | Signature: [static,const] NetlistCrossReference::Status None Description: Enum constant NetlistCrossReference::None No specific status is implied if this code is present. Python specific notes: |
Skipped | Signature: [static,const] NetlistCrossReference::Status Skipped Description: Enum constant NetlistCrossReference::Skipped On circuits this code means that a match has not been attempted because subcircuits of this circuits were not matched. As circuit matching happens bottom-up, all subcircuits must match at least with respect to their pins to allow any parent circuit to be matched. Python specific notes: |
hash | Signature: [const] int hash Description: Gets the hash value from the enum Python specific notes: |
inspect | Signature: [const] string inspect Description: Converts an enum to a visual string Python specific notes: |
new | (1) Signature: [static] new NetlistCrossReference::Status ptr new (int i) Description: Creates an enum from an integer value Python specific notes: |
(2) Signature: [static] new NetlistCrossReference::Status 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 Python specific notes: |
to_s | Signature: [const] string to_s Description: Gets the symbolic string from an enum Python specific notes: |