Class Project (2.69.0)

public class Project implements Serializable

Google BigQuery Project information. A project is the top-level container for Google Cloud resources, and holds BigQuery dataset collections. This class wraps a BigQuery project resource, providing details such as the project's unique alphanumeric ID, numeric project number, and friendly display name.

Objects of this class can be obtained by listing projects accessible to the caller using BigQuery#listProjects(BigQuery.ProjectListOption...). See Also: Projects: list

Inheritance

Object > Project

Implements

Serializable

Constructors

Project(String id, String numericId, String projectId, String friendlyName)

public Project(String id, String numericId, String projectId, String friendlyName)
Parameters
Name Description
id String
numericId String
projectId String
friendlyName String

Methods

equals(Object o)

public boolean equals(Object o)
Parameter
Name Description
o Object
Returns
Type Description
boolean
Overrides

getFriendlyName()

public String getFriendlyName()

Returns the user-defined display name of the project.

Returns
Type Description
String

getId()

public String getId()

Returns the resource ID of the project.

Returns
Type Description
String

getNumericId()

public String getNumericId()

Returns the unique numeric project number.

Returns
Type Description
String

getProjectId()

public String getProjectId()

Returns the unique alphanumeric project ID.

Returns
Type Description
String

hashCode()

public int hashCode()
Returns
Type Description
int
Overrides

toString()

public String toString()
Returns
Type Description
String
Overrides