Class IndexedProperty
- java.lang.Object
-
- org.apache.jackrabbit.oak.index.indexer.document.flatfile.analysis.modules.IndexedProperty
-
public class IndexedProperty extends java.lang.Object
An indexed property. It can have a list of parent nodes, and a node type.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IndexedProperty
create(java.lang.String nodeType, java.lang.String fullName)
java.lang.String
getPropertyName()
boolean
matches(java.lang.String name, NodeData node)
Check if a certain property matches the index definition.java.lang.String
toString()
-
-
-
Method Detail
-
create
public static IndexedProperty create(java.lang.String nodeType, java.lang.String fullName)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
matches
public boolean matches(java.lang.String name, NodeData node)
Check if a certain property matches the index definition.- Parameters:
name
- the name of the propertynode
- the node (which may have parent nodes)- Returns:
- whether the property matches the index definition
-
getPropertyName
public java.lang.String getPropertyName()
-
-