Package org.apache.flink.table.catalog
Class ObjectPath
- java.lang.Object
-
- org.apache.flink.table.catalog.ObjectPath
-
- All Implemented Interfaces:
Serializable
@PublicEvolving public class ObjectPath extends Object implements Serializable
A database name and object (table/view/function) name combo in a catalog.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ObjectPath(String databaseName, String objectName)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
static ObjectPath
fromString(String fullName)
String
getDatabaseName()
String
getFullName()
String
getObjectName()
int
hashCode()
String
toString()
-
-
-
Method Detail
-
getDatabaseName
public String getDatabaseName()
-
getObjectName
public String getObjectName()
-
getFullName
public String getFullName()
-
fromString
public static ObjectPath fromString(String fullName)
-
-