tf.compat.v1.flags.MultiEnumClassFlag

A multi_enum_class flag.

Inherits From: MultiFlag

tf.compat.v1.flags.MultiEnumClassFlag(
    name, default, help_string, enum_class, **args
)

See the doc for MultiFlag for most behaviors of this class. In addition, this class knows how to handle enum.Enum instances as values for this flag type.

Attributes:

Methods

__eq__

__eq__(
    other
)

Return self==value.

__ge__

__ge__(
    other, NotImplemented=NotImplemented
)

Return a >= b. Computed by @total_ordering from (not a < b).

__gt__

__gt__(
    other, NotImplemented=NotImplemented
)

Return a > b. Computed by @total_ordering from (not a < b) and (a != b).

__le__

__le__(
    other, NotImplemented=NotImplemented
)

Return a <= b. Computed by @total_ordering from (a < b) or (a == b).

__lt__

__lt__(
    other
)

Return self<value.

flag_type

flag_type()

See base class.

parse

parse(
    arguments
)

Parses one or more arguments with the installed parser.

Args:

serialize

serialize()

Serializes the flag.

unparse

unparse()