public interface PropertyValue
| Modifier and Type | Interface and Description |
|---|---|
static class |
PropertyValue.BytesStore
Property values are stored as byte arrays.
|
static interface |
PropertyValue.Factory<P extends PropertyValue>
A factory interface for PropertyValue.
|
static class |
PropertyValue.SealedStore
Encrypted property value storage intended for storing passwords in something other than
plaintext using
SealedObject class. |
static interface |
PropertyValue.Strategy
A specification of which factories are to be used for unprotected values as opposed to protected values.
|
static class |
PropertyValue.StringStore
Values are stored as strings.
|
| Modifier and Type | Method and Description |
|---|---|
static char[] |
bytesToChars(byte[] value) |
static CharSequence |
bytesToCharSequence(byte[] bytes) |
static byte[] |
charSequenceToBytes(CharSequence charSequence) |
static byte[] |
charsToBytes(char[] value) |
CharSequence |
getValue() |
byte[] |
getValueAsBytes() |
char[] |
getValueAsChars() |
String |
getValueAsString() |
boolean |
isProtected() |
CharSequence getValue()
char[] getValueAsChars()
byte[] getValueAsBytes()
boolean isProtected()
String getValueAsString()
static byte[] charsToBytes(char[] value)
static char[] bytesToChars(byte[] value)
static byte[] charSequenceToBytes(CharSequence charSequence)
static CharSequence bytesToCharSequence(byte[] bytes)
Copyright © 2025. All rights reserved.