Package com.google.cloud.bigquery
Class RoutineId
- java.lang.Object
-
- com.google.cloud.bigquery.RoutineId
-
- All Implemented Interfaces:
Serializable
public final class RoutineId extends Object implements Serializable
RoutineId represents the identifier for a given Routine.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getDataset()
Return corresponding dataset ID for this routine.String
getProject()
Return corresponding project ID for this routine.String
getRoutine()
Return corresponding routine ID for this routine.int
hashCode()
static RoutineId
of(String dataset, String routine)
Creates a routine identity given dataset and routine identifiers.static RoutineId
of(String project, String dataset, String routine)
Creates a routine identity given project, dataset, and routine identifiers.String
toString()
-
-
-
Method Detail
-
getProject
public String getProject()
Return corresponding project ID for this routine. *
-
getDataset
public String getDataset()
Return corresponding dataset ID for this routine. *
-
getRoutine
public String getRoutine()
Return corresponding routine ID for this routine. *
-
of
public static RoutineId of(String project, String dataset, String routine)
Creates a routine identity given project, dataset, and routine identifiers. *
-
of
public static RoutineId of(String dataset, String routine)
Creates a routine identity given dataset and routine identifiers. *
-
-