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 booleanequals(Object o)static ObjectPathfromString(String fullName)StringgetDatabaseName()StringgetFullName()StringgetObjectName()inthashCode()StringtoString()
-
-
-
Method Detail
-
getDatabaseName
public String getDatabaseName()
-
getObjectName
public String getObjectName()
-
getFullName
public String getFullName()
-
fromString
public static ObjectPath fromString(String fullName)
-
-