Class IndexRowImpl
- java.lang.Object
-
- org.apache.jackrabbit.oak.query.index.IndexRowImpl
-
-
Constructor Summary
Constructors Constructor Description IndexRowImpl(String path)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPath()The path of the node, if available.PropertyValuegetValue(String columnName)The value of the given property, if available.booleanisVirtualRow()Marks if the row is virtual and behavior ofgetPathis undefined.
-
-
-
Constructor Detail
-
IndexRowImpl
public IndexRowImpl(String path)
-
-
Method Detail
-
isVirtualRow
public boolean isVirtualRow()
Description copied from interface:IndexRowMarks if the row is virtual and behavior ofgetPathis undefined. The implementation may choose to returnnullor empty string. User of a virtual row should now rely of value ofgetPathreturned from virtual rows.- Specified by:
isVirtualRowin interfaceIndexRow- Returns:
- if path is available for the current row
-
getPath
public String getPath()
Description copied from interface:IndexRowThe path of the node, if available.
-
getValue
public PropertyValue getValue(String columnName)
Description copied from interface:IndexRowThe value of the given property, if available. This might be a property of the given node, or a pseudo-property (a property that is only available in the index but not in the node itself, such as "jcr:score").
-
-