java.lang.Object
org.tquadrat.foundation.inifile.internal.Value
- All Implemented Interfaces:
Comparable<Value>
@ClassVersion(sourceVersion="$Id: Value.java 1134 2024-05-20 16:53:16Z tquadrat $")
@API(status=INTERNAL,
since="0.1.0")
public final class Value
extends Object
implements Comparable<Value>
The container for the value of an INI file.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: Value.java 1134 2024-05-20 16:53:16Z tquadrat $
- Since:
- 0.1.0
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.inifile.internal.Value"
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal void
addComment
(String comment) Adds a comment to the value.static final boolean
checkKeyCandidate
(String candidate) An implementation ofPredicate
to be used withObjects.requireValidArgument(Object,String,Predicate)
when checking the keys for new values.int
final boolean
final String
getValue()
Returns the current value.final int
hashCode()
final void
setComment
(String comment) Sets a comment to the group.final void
Sets a new value.final String
toString()
-
Field Details
-
m_Comment
The comment for this value. -
m_Group
The reference to the parent group. -
m_Key
The key. -
m_Value
The value itself.
-
-
Constructor Details
-
Value
Creates a new instance ofValue
.- Parameters:
parent
- The parent group.key
- The key.
-
Value
Creates a new instance ofValue
.- Parameters:
parent
- The parent group.key
- The key.value
- The value.
-
-
Method Details
-
addComment
Adds a comment to the value.- Parameters:
comment
- The comment.
-
checkKeyCandidate
@API(status=INTERNAL, since="0.4.4") public static final boolean checkKeyCandidate(String candidate) An implementation of
Predicate
to be used withObjects.requireValidArgument(Object,String,Predicate)
when checking the keys for new values.The candidate may not begin with a hash symbol ('#') or an opening bracket ('['), and it may not contain newline characters, tab characters or equal signs.
You should avoid hash symbols and opening brackets completely, even inside or at the end of the key, as well as closing brackets (']'), despite they are technically valid.
- Parameters:
candidate
- The key to check.- Returns:
true
if the value is a valid key,false
otherwise.- Throws:
NullArgumentException
- The candidate isnull
.EmptyArgumentException
- The candidate is the empty string.BlankArgumentException
- The candidate consists of whitespace only.- Since:
- 0.4.4
-
compareTo
- Specified by:
compareTo
in interfaceComparable<Value>
- Since:
- 0.4.2
-
equals
-
getValue
Returns the current value.- Returns:
- The current value; can be
null
.
-
hashCode
-
setComment
Sets a comment to the group.
Any previously existing comment will be overwritten.
- Parameters:
comment
- The comment.- Since:
- 0.4.2
-
setValue
Sets a new value.- Parameters:
value
- The new value; can benull
.
-
toString
-