Class LongPropertyState
- java.lang.Object
-
- org.apache.jackrabbit.oak.plugins.memory.AbstractPropertyState
-
- org.apache.jackrabbit.oak.plugins.memory.EmptyPropertyState
-
- org.apache.jackrabbit.oak.plugins.memory.LongPropertyState
-
- All Implemented Interfaces:
org.apache.jackrabbit.oak.api.PropertyState
public class LongPropertyState extends EmptyPropertyState
-
-
Constructor Summary
Constructors Constructor Description LongPropertyState(@NotNull java.lang.String name, long value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcount()static org.apache.jackrabbit.oak.api.PropertyStatecreateLongProperty(@NotNull java.lang.String name, long value)Create aPropertyStatefrom a long.Conversions.ConvertergetConverter()Create a converter for converting the value of this property to other types.org.apache.jackrabbit.oak.api.Type<?>getType()java.lang.LonggetValue()The value of this property<S> SgetValue(org.apache.jackrabbit.oak.api.Type<S> type)<S> SgetValue(org.apache.jackrabbit.oak.api.Type<S> type, int index)booleanisArray()longsize()longsize(int index)-
Methods inherited from class org.apache.jackrabbit.oak.plugins.memory.EmptyPropertyState
emptyProperty, getName
-
-
-
-
Method Detail
-
createLongProperty
public static org.apache.jackrabbit.oak.api.PropertyState createLongProperty(@NotNull @NotNull java.lang.String name, long value)Create aPropertyStatefrom a long.- Parameters:
name- The name of the property statevalue- The value of the property state- Returns:
- The new property state of type
Type.LONG
-
getValue
public java.lang.Long getValue()
The value of this property- Returns:
- Value of this property
-
getConverter
public Conversions.Converter getConverter()
Create a converter for converting the value of this property to other types.- Returns:
- A converter for the value of this property
-
getType
public org.apache.jackrabbit.oak.api.Type<?> getType()
-
isArray
public boolean isArray()
- Specified by:
isArrayin interfaceorg.apache.jackrabbit.oak.api.PropertyState- Overrides:
isArrayin classEmptyPropertyState- Returns:
false
-
getValue
@NotNull public <S> S getValue(org.apache.jackrabbit.oak.api.Type<S> type)
- Specified by:
getValuein interfaceorg.apache.jackrabbit.oak.api.PropertyState- Overrides:
getValuein classEmptyPropertyState- Returns:
- An empty list if
type.isArray()istrue. - Throws:
java.lang.IllegalArgumentException- iftypeis not one of the values defined inType.
-
getValue
@NotNull public <S> S getValue(org.apache.jackrabbit.oak.api.Type<S> type, int index)- Specified by:
getValuein interfaceorg.apache.jackrabbit.oak.api.PropertyState- Overrides:
getValuein classEmptyPropertyState- Throws:
java.lang.IllegalArgumentException- iftype.isArrayistruejava.lang.IndexOutOfBoundsException- ifindex != 0
-
size
public long size()
- Specified by:
sizein interfaceorg.apache.jackrabbit.oak.api.PropertyState- Overrides:
sizein classEmptyPropertyState- Returns:
getString().length()
-
size
public long size(int index)
- Specified by:
sizein interfaceorg.apache.jackrabbit.oak.api.PropertyState- Overrides:
sizein classEmptyPropertyState- Returns:
size- Throws:
java.lang.IndexOutOfBoundsException- ifindex != 0
-
count
public int count()
- Specified by:
countin interfaceorg.apache.jackrabbit.oak.api.PropertyState- Overrides:
countin classEmptyPropertyState- Returns:
1
-
-