ResolutionEnum Class

public final class ResolutionEnum
extends ExpandableStringEnum<ResolutionEnum>

Defines values for ResolutionEnum.

Field Summary

Modifier and Type Field and Description
static final ResolutionEnum HUGE

Return the boundary geometry with more or the same amount of points as large.

static final ResolutionEnum LARGE

Return the boundary geometry with more or the same amount of points as medium.

static final ResolutionEnum MEDIUM

Return the boundary geometry with more or the same amount of points as small.

static final ResolutionEnum SMALL

Return the boundary geometry with the least amount of points.

Constructor Summary

Constructor Description
ResolutionEnum()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ResolutionEnum value.

Method Summary

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

Creates or finds a ResolutionEnum from its string representation.

static Collection<ResolutionEnum> values()

Gets known ResolutionEnum values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

HUGE

public static final ResolutionEnum HUGE

Return the boundary geometry with more or the same amount of points as large.

LARGE

public static final ResolutionEnum LARGE

Return the boundary geometry with more or the same amount of points as medium.

MEDIUM

public static final ResolutionEnum MEDIUM

Return the boundary geometry with more or the same amount of points as small.

SMALL

public static final ResolutionEnum SMALL

Return the boundary geometry with the least amount of points.

Constructor Details

ResolutionEnum

@Deprecated
public ResolutionEnum()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ResolutionEnum value.

Method Details

fromString

public static ResolutionEnum fromString(String name)

Creates or finds a ResolutionEnum from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding ResolutionEnum.

values

public static Collection<ResolutionEnum> values()

Gets known ResolutionEnum values.

Returns:

known ResolutionEnum values.

Applies to