Notation used in Ruby API documentation
Module: db
Description: This class represents the error filter mode on rectangles for \Region#separation and related checks.
This class is equivalent to the class Region::RectFilter
This enum has been introduced in version 0.27.
| new Region::RectFilter ptr | new | (int i) | Creates an enum from an integer value |
| new Region::RectFilter ptr | new | (string s) | Creates an enum from a string value |
| [const] | bool | != | (const Region::RectFilter other) | Compares two enums for inequality |
| [const] | bool | < | (const Region::RectFilter other) | Returns true if the first enum is less (in the enum symbol order) than the second |
| [const] | bool | == | (const Region::RectFilter 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] | Region::RectFilter | FourSidesAllowed | Allow errors when on all sides | |
| [static,const] | Region::RectFilter | NoRectFilter | Specifies no filtering | |
| [static,const] | Region::RectFilter | OneSideAllowed | Allow errors on one side | |
| [static,const] | Region::RectFilter | ThreeSidesAllowed | Allow errors when on three sides | |
| [static,const] | Region::RectFilter | TwoConnectedSidesAllowed | Allow errors on two sides ("L" configuration) | |
| [static,const] | Region::RectFilter | TwoOppositeSidesAllowed | Allow errors on two opposite sides | |
| [static,const] | Region::RectFilter | TwoSidesAllowed | Allow errors on two sides (not specified which) |
!= | Signature: [const] bool != (const Region::RectFilter other) Description: Compares two enums for inequality |
< | Signature: [const] bool < (const Region::RectFilter other) Description: Returns true if the first enum is less (in the enum symbol order) than the second |
== | Signature: [const] bool == (const Region::RectFilter other) Description: Compares two enums |
FourSidesAllowed | Signature: [static,const] Region::RectFilter FourSidesAllowed Description: Allow errors when on all sides |
NoRectFilter | Signature: [static,const] Region::RectFilter NoRectFilter Description: Specifies no filtering |
OneSideAllowed | Signature: [static,const] Region::RectFilter OneSideAllowed Description: Allow errors on one side |
ThreeSidesAllowed | Signature: [static,const] Region::RectFilter ThreeSidesAllowed Description: Allow errors when on three sides |
TwoConnectedSidesAllowed | Signature: [static,const] Region::RectFilter TwoConnectedSidesAllowed Description: Allow errors on two sides ("L" configuration) |
TwoOppositeSidesAllowed | Signature: [static,const] Region::RectFilter TwoOppositeSidesAllowed Description: Allow errors on two opposite sides |
TwoSidesAllowed | Signature: [static,const] Region::RectFilter TwoSidesAllowed Description: Allow errors on two sides (not specified which) |
inspect | Signature: [const] string inspect Description: Converts an enum to a visual string Python specific notes: |
new | (1) Signature: [static] new Region::RectFilter ptr new (int i) Description: Creates an enum from an integer value Python specific notes: |
(2) Signature: [static] new Region::RectFilter 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: |