ecflow.Flag

class ecflow.Flag

Bases: pybind11_object

Represents additional state associated with a Node.

Flag.clear(self: ecflow.Flag, arg0: ecflow.FlagType) None

Clear the given flag. Used in test only

Flag.is_set(self: ecflow.Flag, arg0: ecflow.FlagType) bool

Queries if a given flag is set

static Flag.list() std::__1::vector<ecf::Flag::Type, std::__1::allocator<ecf::Flag::Type>>

Returns the list of all flag types. returns FlagTypeVec. Tests only

Flag.reset(self: ecflow.Flag) None

Clears all flags. Used in test only

Flag.set(self: ecflow.Flag, arg0: ecflow.FlagType) None

Sets the given flag. Used in test only

static Flag.type_to_string(arg0: ecflow.FlagType) str

Convert type to a string. Tests only