Share via


LoadBalancerType Class

public final class LoadBalancerType
extends ExpandableStringEnum<LoadBalancerType>

The type of the load balancer.

Field Summary

Modifier and Type Field and Description
static final LoadBalancerType BREADTH_FIRST

Static value BreadthFirst for LoadBalancerType.

static final LoadBalancerType DEPTH_FIRST

Static value DepthFirst for LoadBalancerType.

static final LoadBalancerType PERSISTENT

Static value Persistent for LoadBalancerType.

Constructor Summary

Constructor Description
LoadBalancerType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of LoadBalancerType value.

Method Summary

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

Creates or finds a LoadBalancerType from its string representation.

static Collection<LoadBalancerType> values()

Gets known LoadBalancerType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

BREADTH_FIRST

public static final LoadBalancerType BREADTH_FIRST

Static value BreadthFirst for LoadBalancerType.

DEPTH_FIRST

public static final LoadBalancerType DEPTH_FIRST

Static value DepthFirst for LoadBalancerType.

PERSISTENT

public static final LoadBalancerType PERSISTENT

Static value Persistent for LoadBalancerType.

Constructor Details

LoadBalancerType

@Deprecated
public LoadBalancerType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of LoadBalancerType value.

Method Details

fromString

public static LoadBalancerType fromString(String name)

Creates or finds a LoadBalancerType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding LoadBalancerType.

values

public static Collection<LoadBalancerType> values()

Gets known LoadBalancerType values.

Returns:

known LoadBalancerType values.

Applies to