class documentation
class EvalCriteriaOperator(ACMEIntEnum):
Eval Criteria Operator enum values.
| Method | is |
Check if the given BasicType is allowed for the current EvalCriteriaOperator. |
| Class Variable | equal |
Equal. |
| Class Variable | greater |
Greater than. |
| Class Variable | greater |
Greater than or equal. |
| Class Variable | less |
Less than. |
| Class Variable | less |
Less than or equal. |
| Class Variable | not |
Not equal. |
Inherited from ACMEIntEnum:
| Class Method | has |
Check whether the enum type has an entry with either the given int value or string name. |
| Class Method | to |
Return an enum value by its name. |
| Method | __int__ |
Get the integer value of an enum. |
| Method | __repr__ |
Stringify an enum. |
| Method | __str__ |
Stringify an enum. |
Check if the given BasicType is allowed for the current EvalCriteriaOperator.
| Parameters | |
typ:BasicType | The BasicType to check. |
| Returns | |
bool | True if the BasicType is allowed for the current EvalCriteriaOperator, False otherwise. |