Package org.apache.flink.table.catalog
Class DefaultIndex
- java.lang.Object
-
- org.apache.flink.table.catalog.DefaultIndex
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringasSummaryString()Print the index in a readable way.booleanequals(Object o)List<String>getColumns()Get the columns of this index.StringgetName()Get the name of this index.inthashCode()static DefaultIndexnewIndex(String name, List<String> columns)StringtoString()
-
-
-
Method Detail
-
newIndex
public static DefaultIndex newIndex(String name, List<String> columns)
-
getName
public String getName()
Description copied from interface:IndexGet the name of this index.
-
getColumns
public List<String> getColumns()
Description copied from interface:IndexGet the columns of this index.- Specified by:
getColumnsin interfaceIndex
-
asSummaryString
public String asSummaryString()
Description copied from interface:IndexPrint the index in a readable way.- Specified by:
asSummaryStringin interfaceIndex
-
-