Package nbbrd.io.text
Class Property<T>
- java.lang.Object
-
- nbbrd.io.text.BaseProperty
-
- nbbrd.io.text.Property<T>
-
- All Implemented Interfaces:
CharSequence
public final class Property<T> extends BaseProperty
- Author:
- Philippe Charles
-
-
Constructor Summary
Constructors Constructor Description Property()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable Tget(@NonNull Function<? super String,? extends CharSequence> properties)@Nullable Tget(@NonNull Map<String,String> properties)@Nullable Tget(@NonNull Properties properties)voidset(@NonNull BiConsumer<? super String,? super String> properties, @Nullable T value)voidset(@NonNull Map<String,String> properties, T value)voidset(@NonNull Properties properties, T value)-
Methods inherited from class nbbrd.io.text.BaseProperty
charAt, chars, codePoints, getKey, keysOf, length, subSequence, toString
-
-
-
-
Method Detail
-
get
public @Nullable T get(@NonNull Function<? super String,? extends CharSequence> properties)
-
get
public @Nullable T get(@NonNull Properties properties)
-
set
public void set(@NonNull BiConsumer<? super String,? super String> properties, @Nullable T value)
-
set
public void set(@NonNull Properties properties, T value)
-
-