NetworkDataplane Class

public final class NetworkDataplane
extends ExpandableStringEnum<NetworkDataplane>

Network dataplane used in the Kubernetes cluster.

Field Summary

Modifier and Type Field and Description
static final NetworkDataplane AZURE

Static value azure for NetworkDataplane.

static final NetworkDataplane CILIUM

Static value cilium for NetworkDataplane.

Constructor Summary

Constructor Description
NetworkDataplane()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of NetworkDataplane value.

Method Summary

Modifier and Type Method and Description
static NetworkDataplane fromString(String name)

Creates or finds a NetworkDataplane from its string representation.

static Collection<NetworkDataplane> values()

Gets known NetworkDataplane values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

AZURE

public static final NetworkDataplane AZURE

Static value azure for NetworkDataplane.

CILIUM

public static final NetworkDataplane CILIUM

Static value cilium for NetworkDataplane.

Constructor Details

NetworkDataplane

@Deprecated
public NetworkDataplane()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of NetworkDataplane value.

Method Details

fromString

public static NetworkDataplane fromString(String name)

Creates or finds a NetworkDataplane from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding NetworkDataplane.

values

public static Collection values()

Gets known NetworkDataplane values.

Returns:

known NetworkDataplane values.

Applies to