Share via


ProjectSourcePlatform Class

public final class ProjectSourcePlatform
extends ExpandableStringEnum<ProjectSourcePlatform>

Source platform of the project.

Field Summary

Modifier and Type Field and Description
static final ProjectSourcePlatform MONGO_DB

Static value MongoDb for ProjectSourcePlatform.

static final ProjectSourcePlatform MY_SQL

Static value MySQL for ProjectSourcePlatform.

static final ProjectSourcePlatform POSTGRE_SQL

Static value PostgreSql for ProjectSourcePlatform.

static final ProjectSourcePlatform SQL

Static value SQL for ProjectSourcePlatform.

static final ProjectSourcePlatform UNKNOWN

Static value Unknown for ProjectSourcePlatform.

Constructor Summary

Constructor Description
ProjectSourcePlatform()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ProjectSourcePlatform value.

Method Summary

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

Creates or finds a ProjectSourcePlatform from its string representation.

static Collection<ProjectSourcePlatform> values()

Gets known ProjectSourcePlatform values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

MONGO_DB

public static final ProjectSourcePlatform MONGO_DB

Static value MongoDb for ProjectSourcePlatform.

MY_SQL

public static final ProjectSourcePlatform MY_SQL

Static value MySQL for ProjectSourcePlatform.

POSTGRE_SQL

public static final ProjectSourcePlatform POSTGRE_SQL

Static value PostgreSql for ProjectSourcePlatform.

SQL

public static final ProjectSourcePlatform SQL

Static value SQL for ProjectSourcePlatform.

UNKNOWN

public static final ProjectSourcePlatform UNKNOWN

Static value Unknown for ProjectSourcePlatform.

Constructor Details

ProjectSourcePlatform

@Deprecated
public ProjectSourcePlatform()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ProjectSourcePlatform value.

Method Details

fromString

public static ProjectSourcePlatform fromString(String name)

Creates or finds a ProjectSourcePlatform from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding ProjectSourcePlatform.

values

public static Collection<ProjectSourcePlatform> values()

Gets known ProjectSourcePlatform values.

Returns:

known ProjectSourcePlatform values.

Applies to