Class BooleanPropertyState
- java.lang.Object
-
- org.apache.jackrabbit.oak.plugins.memory.AbstractPropertyState
-
- org.apache.jackrabbit.oak.plugins.memory.EmptyPropertyState
-
- org.apache.jackrabbit.oak.plugins.memory.BooleanPropertyState
-
- All Implemented Interfaces:
PropertyState
public class BooleanPropertyState extends EmptyPropertyState
-
-
Constructor Summary
Constructors Constructor Description BooleanPropertyState(@NotNull java.lang.String name, boolean value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PropertyStatebooleanProperty(@NotNull java.lang.String name, boolean value)Create aPropertyStatefrom a boolean.intcount()The number of values of this property.Conversions.ConvertergetConverter()Create a converter for converting the value of this property to other types.Type<?>getType()Determine the type of this propertyjava.lang.BooleangetValue()The value of this property<S> SgetValue(Type<S> type)Value of this property.<S> SgetValue(Type<S> type, int index)Value at the givenindex.booleanisArray()Determine whether the value is an array of atomslongsize()The size of the value of this property.longsize(int index)The size of the value at the givenindex.-
Methods inherited from class org.apache.jackrabbit.oak.plugins.memory.EmptyPropertyState
emptyProperty, getName
-
-
-
-
Method Detail
-
booleanProperty
public static PropertyState booleanProperty(@NotNull @NotNull java.lang.String name, boolean value)
Create aPropertyStatefrom a boolean.- Parameters:
name- The name of the property statevalue- The value of the property state- Returns:
- The new property state of type
Type.BOOLEAN
-
getValue
public java.lang.Boolean 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 Type<?> getType()
Description copied from interface:PropertyStateDetermine the type of this property- Returns:
- the type of this property
-
isArray
public boolean isArray()
Description copied from interface:PropertyStateDetermine whether the value is an array of atoms- Specified by:
isArrayin interfacePropertyState- Overrides:
isArrayin classEmptyPropertyState- Returns:
false
-
getValue
@NotNull public <S> S getValue(Type<S> type)
Description copied from interface:PropertyStateValue of this property. The type of the return value is determined by the targettypeargument. Iftype.isArray()is true, this method returns anIterableof thebase typeoftypecontaining all values of this property. If the target type is not the same as the type of this property an attempt is made to convert the value to the target type. If the conversion fails an exception is thrown. The actual conversions which take place are those defined in theorg.apache.jackrabbit.oak.plugins.value.Conversionsclass.- Specified by:
getValuein interfacePropertyState- Overrides:
getValuein classEmptyPropertyState- Parameters:
type- target type- 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(Type<S> type, int index)
Description copied from interface:PropertyStateValue at the givenindex. The type of the return value is determined by the targettypeargument. If the target type is not the same as the type of this property an attempt is made to convert the value to the target type. If the conversion fails an exception is thrown. The actual conversions which take place are those defined in theorg.apache.jackrabbit.oak.plugins.value.Conversionsclass.- Specified by:
getValuein interfacePropertyState- Overrides:
getValuein classEmptyPropertyState- Parameters:
type- target type- Returns:
- the value of this property at the given
index - Throws:
java.lang.IllegalArgumentException- iftype.isArrayistruejava.lang.IndexOutOfBoundsException- ifindex != 0
-
size
public long size()
Description copied from interface:PropertyStateThe size of the value of this property.- Specified by:
sizein interfacePropertyState- Overrides:
sizein classEmptyPropertyState- Returns:
getString().length()
-
size
public long size(int index)
Description copied from interface:PropertyStateThe size of the value at the givenindex.- Specified by:
sizein interfacePropertyState- Overrides:
sizein classEmptyPropertyState- Returns:
size- Throws:
java.lang.IndexOutOfBoundsException- ifindex != 0
-
count
public int count()
Description copied from interface:PropertyStateThe number of values of this property.1for atoms.- Specified by:
countin interfacePropertyState- Overrides:
countin classEmptyPropertyState- Returns:
1
-
-