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 booleanequals(Object obj)StringgetDataset()Return corresponding dataset ID for this routine.StringgetProject()Return corresponding project ID for this routine.StringgetRoutine()Return corresponding routine ID for this routine.inthashCode()static RoutineIdof(String dataset, String routine)Creates a routine identity given dataset and routine identifiers.static RoutineIdof(String project, String dataset, String routine)Creates a routine identity given project, dataset, and routine identifiers.StringtoString()
-
-
-
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. *
-
-