public abstract class AbstractNodeState extends Object implements NodeState
NodeState implementations.
This base class contains default implementations of the
equals(Object) and hashCode() methods based on
the implemented interface.
This class also implements trivial (and potentially very slow) versions of
the getProperty(String) and getPropertyCount() methods
based on NodeState.getProperties(). The getChildNodeCount(long) method
is similarly implemented based on NodeState.getChildNodeEntries().
Subclasses should normally override these method with a more efficient
alternatives.
| Constructor and Description |
|---|
AbstractNodeState() |
| Modifier and Type | Method and Description |
|---|---|
static void |
checkValidName(String name) |
boolean |
compareAgainstBaseState(NodeState base,
NodeStateDiff diff)
Generic default comparison algorithm that simply walks through the
property and child node lists of the given base state and compares
the entries one by one with corresponding ones (if any) in this state.
|
static boolean |
compareAgainstBaseState(NodeState state,
NodeState base,
NodeStateDiff diff)
Generic default comparison algorithm that simply walks through the
property and child node lists of the given base state and compares
the entries one by one with corresponding ones (if any) in this state.
|
static boolean |
comparePropertiesAgainstBaseState(NodeState state,
NodeState base,
NodeStateDiff diff)
Compares the properties of
base state with this
state. |
protected static long |
count(Iterable<?> iterable) |
static boolean |
equals(NodeState a,
NodeState b) |
boolean |
equals(Object that)
Checks whether the given object is equal to this one.
|
static boolean |
getBoolean(NodeState state,
String name) |
boolean |
getBoolean(@NotNull String name)
Returns the boolean value of the named property.
|
long |
getChildNodeCount(long max)
Returns the number of iterable child nodes of this node.
|
Iterable<String> |
getChildNodeNames()
Returns the names of all iterable child nodes.
|
static long |
getLong(NodeState state,
String name) |
long |
getLong(String name)
Returns the long value of the named property.
|
static String |
getName(NodeState state,
String name) |
@Nullable String |
getName(@NotNull String name)
Returns the name value of the named property.
|
static Iterable<String> |
getNames(NodeState state,
String name) |
@NotNull Iterable<String> |
getNames(@NotNull String name)
Returns the name values of the named property.
|
org.apache.jackrabbit.oak.api.PropertyState |
getProperty(@NotNull String name)
Returns the named property, or
null if no such property exists. |
long |
getPropertyCount()
Returns the number of properties of this node.
|
static String |
getString(NodeState state,
String name) |
String |
getString(String name)
Returns the string value of the named property.
|
static Iterable<String> |
getStrings(NodeState state,
String name) |
@NotNull Iterable<String> |
getStrings(@NotNull String name)
Returns the string values of the named property.
|
int |
hashCode()
Returns a hash code that's compatible with how the
equals(Object) method is implemented. |
boolean |
hasProperty(@NotNull String name)
Checks whether the named property exists.
|
static boolean |
isValidName(String name) |
String |
toString()
Returns a string representation of this node state.
|
static String |
toString(NodeState state) |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitbuilder, exists, getChildNode, getChildNodeEntries, getProperties, hasChildNodepublic static boolean isValidName(String name)
public static void checkValidName(String name) throws IllegalArgumentException
IllegalArgumentExceptionpublic static boolean compareAgainstBaseState(NodeState state, NodeState base, NodeStateDiff diff)
public static boolean comparePropertiesAgainstBaseState(NodeState state, NodeState base, NodeStateDiff diff)
base state with this
state.state - the head node state.base - the base node state.diff - the node state diff.true to continue the comparison, false to stoppublic boolean hasProperty(@NotNull
@NotNull String name)
NodeStategetProperty(name) != null, but may be optimized
to avoid having to load the property value.hasProperty in interface NodeStatename - property nametrue if the named property exists,
false otherwisepublic boolean getBoolean(@NotNull
@NotNull String name)
NodeState
PropertyState property = state.getProperty(name);
return property != null
&& property.getType() == Type.BOOLEAN
&& property.getValue(Type.BOOLEAN);
getBoolean in interface NodeStatename - property namefalsepublic long getLong(String name)
NodeState
PropertyState property = state.getProperty(name);
if (property != null && property.getType() == Type.LONG) {
return property.getValue(Type.LONG);
} else {
return 0;
}
public String getString(String name)
NodeState
PropertyState property = state.getProperty(name);
if (property != null && property.getType() == Type.STRING) {
return property.getValue(Type.STRING);
} else {
return null;
}
@NotNull public @NotNull Iterable<String> getStrings(@NotNull @NotNull String name)
NodeState
PropertyState property = state.getProperty(name);
if (property != null && property.getType() == Type.STRINGS) {
return property.getValue(Type.STRINGS);
} else {
return Collections.emptyList();
}
getStrings in interface NodeStatename - property name@Nullable public @Nullable String getName(@NotNull @NotNull String name)
NodeState
PropertyState property = state.getProperty(name);
if (property != null && property.getType() == Type.NAME) {
return property.getValue(Type.NAME);
} else {
return null;
}
@NotNull public @NotNull Iterable<String> getNames(@NotNull @NotNull String name)
NodeState
PropertyState property = state.getProperty(name);
if (property != null && property.getType() == Type.NAMES) {
return property.getValue(Type.NAMES);
} else {
return Collections.emptyList();
}
public org.apache.jackrabbit.oak.api.PropertyState getProperty(@NotNull @NotNull String name)
NodeStatenull if no such property exists.getProperty in interface NodeStatename - name of the property to returnnull if not foundpublic long getPropertyCount()
NodeStategetPropertyCount in interface NodeStatepublic long getChildNodeCount(long max)
NodeStateIf an implementation knows the exact value, it returns it (even if the value is higher than max). If the implementation does not know the exact value, and the child node count is higher than max, it may return Long.MAX_VALUE. The cost of the operation is at most O(max).
getChildNodeCount in interface NodeStatemax - the maximum number of entries to traversepublic Iterable<String> getChildNodeNames()
NodeStategetChildNodeNames in interface NodeStatepublic boolean compareAgainstBaseState(NodeState base, NodeStateDiff diff)
compareAgainstBaseState in interface NodeStatebase - base statediff - handler of node state differencestrue if the full diff was performed, or
false if it was aborted as requested by the handler
(see the NodeStateDiff contract for more details)public String toString()
public boolean equals(Object that)
public int hashCode()
equals(Object) method is implemented. The current
implementation simply returns zero for everything since
NodeState instances are not intended for use as hash keys.protected static long count(Iterable<?> iterable)
Copyright © 2012–2021 The Apache Software Foundation. All rights reserved.