Package nbbrd.io.text
Class BaseProperty
- java.lang.Object
-
- nbbrd.io.text.BaseProperty
-
- All Implemented Interfaces:
CharSequence
- Direct Known Subclasses:
BooleanProperty,IntProperty,LongProperty,Property
public abstract class BaseProperty extends Object implements CharSequence
-
-
Constructor Summary
Constructors Constructor Description BaseProperty()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description charcharAt(int index)IntStreamchars()IntStreamcodePoints()abstract @NonNull StringgetKey()static @NonNull List<String>keysOf(@NonNull BaseProperty... properties)intlength()CharSequencesubSequence(int start, int end)StringtoString()
-
-
-
Method Detail
-
getKey
public abstract @NonNull String getKey()
-
length
public int length()
- Specified by:
lengthin interfaceCharSequence
-
charAt
public char charAt(int index)
- Specified by:
charAtin interfaceCharSequence
-
subSequence
public CharSequence subSequence(int start, int end)
- Specified by:
subSequencein interfaceCharSequence
-
chars
public IntStream chars()
- Specified by:
charsin interfaceCharSequence
-
codePoints
public IntStream codePoints()
- Specified by:
codePointsin interfaceCharSequence
-
toString
public String toString()
- Specified by:
toStringin interfaceCharSequence- Overrides:
toStringin classObject
-
keysOf
public static @NonNull List<String> keysOf(@NonNull BaseProperty... properties)
-
-