from __future__ import annotations
from enum import Enum

__NAMESPACE__ = "http://www.netex.org.uk/netex"


class PowerCouplingTypeEnumeration(Enum):
    UNDEFINED = 'undefined'
    PLUG = 'plug'
    PANTOGRAPH_ABOVE = 'pantographAbove'
    PANTOGRAPH = 'pantograph'
    INDUCTION = 'induction'
    OTHER = 'other'