|
ModeShape Distribution 3.0.0.Beta4 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.modeshape.jcr.query.IndexRules
@Immutable public class IndexRules
The set of rules that dictate how properties should be indexed.
Nested Class Summary | |
---|---|
static class |
IndexRules.Builder
A builder of immutable IndexRules objects. |
static interface |
IndexRules.Factory
|
static class |
IndexRules.FieldType
|
static class |
IndexRules.FixedFactory
A simple IndexRules.Factory that always returns the same IndexRules . |
static interface |
IndexRules.NumericRule<T>
|
protected static class |
IndexRules.NumericTypedRule<T>
|
static interface |
IndexRules.Rule
A single rule that dictates how a single property should be indexed. |
protected static class |
IndexRules.SkipRule
|
protected static class |
IndexRules.TypedRule
|
Field Summary | |
---|---|
static IndexRules |
DEFAULT_RULES
The default set of IndexRules when no rules are provided. |
protected static IndexRules.Factory |
DEFAULT_RULES_FACTORY
|
static IndexRules.Rule |
SKIP
|
Constructor Summary | |
---|---|
protected |
IndexRules(Map<Name,IndexRules.Rule> rulesByName,
IndexRules.Rule defaultRule)
|
Method Summary | |
---|---|
static IndexRules.Builder |
createBuilder()
Return a new builder that can be used to create IndexRules objects. |
static IndexRules.Builder |
createBuilder(IndexRules initialRules)
Return a new builder that can be used to create IndexRules objects. |
IndexRules.Rule |
getRule(Name name)
Get the rule associated with the given property name. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final IndexRules DEFAULT_RULES
IndexRules
when no rules are provided. These rules default to index and analyze all properties,
and only index the jcr:uuid
properties to be indexed and stored only (not analyzed and not included
in full-text search. The rules also treat jcr:created
and jcr:lastModified
properties as dates.
protected static final IndexRules.Factory DEFAULT_RULES_FACTORY
public static final IndexRules.Rule SKIP
Constructor Detail |
---|
protected IndexRules(Map<Name,IndexRules.Rule> rulesByName, IndexRules.Rule defaultRule)
Method Detail |
---|
public IndexRules.Rule getRule(Name name)
name
- the property name, or null if the default rule is to be returned
public static IndexRules.Builder createBuilder()
IndexRules
objects.
public static IndexRules.Builder createBuilder(IndexRules initialRules)
IndexRules
objects.
initialRules
- the rules that the builder should start with
IllegalArgumentException
- if the initial rules reference is null
|
ModeShape Distribution 3.0.0.Beta4 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |