Class DecimalPropertyState
- java.lang.Object
-
- org.apache.jackrabbit.oak.plugins.memory.AbstractPropertyState
-
- org.apache.jackrabbit.oak.plugins.memory.EmptyPropertyState
-
- org.apache.jackrabbit.oak.plugins.memory.DecimalPropertyState
-
- All Implemented Interfaces:
org.apache.jackrabbit.oak.api.PropertyState
public class DecimalPropertyState extends EmptyPropertyState
-
-
Constructor Summary
Constructors Constructor Description DecimalPropertyState(@NotNull String name, @NotNull BigDecimal value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcount()static org.apache.jackrabbit.oak.api.PropertyStatedecimalProperty(@NotNull String name, @NotNull BigDecimal value)Create aPropertyStatefrom a decimal.Conversions.ConvertergetConverter()Create a converter for converting the value of this property to other types.org.apache.jackrabbit.oak.api.Type<?>getType()BigDecimalgetValue()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
-
-
-
-
Constructor Detail
-
DecimalPropertyState
public DecimalPropertyState(@NotNull @NotNull String name, @NotNull @NotNull BigDecimal value)
-
-
Method Detail
-
decimalProperty
public static org.apache.jackrabbit.oak.api.PropertyState decimalProperty(@NotNull @NotNull String name, @NotNull @NotNull BigDecimal value)Create aPropertyStatefrom a decimal.- Parameters:
name- The name of the property statevalue- The value of the property state- Returns:
- The new property state of type
Type.DECIMAL
-
getValue
public BigDecimal 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:
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:
IllegalArgumentException- iftype.isArrayistrueIndexOutOfBoundsException- 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:
IndexOutOfBoundsException- ifindex != 0
-
count
public int count()
- Specified by:
countin interfaceorg.apache.jackrabbit.oak.api.PropertyState- Overrides:
countin classEmptyPropertyState- Returns:
1
-
-