Skip navigation links
A C E F G H I L N O P R S T U 

A

add(PropertiesParser.Token) - Method in class org.codejive.properties.Cursor
 
addEol() - Method in class org.codejive.properties.Cursor
 
asJUProperties() - Method in class org.codejive.properties.Properties
Returns a java.util.Properties with the same contents as this object.
atStart() - Method in class org.codejive.properties.Cursor
 

C

clear() - Method in class org.codejive.properties.Properties
 
copy() - Method in class org.codejive.properties.Cursor
 
Cursor - Class in org.codejive.properties
 

E

entrySet() - Method in class org.codejive.properties.Properties
 
escaped() - Method in class org.codejive.properties.Properties
Returns a copy of the object where all characters, in keys and values that are not in the Unicode range of 0x0000-0x00FF, have been escaped.

F

first(List<PropertiesParser.Token>) - Static method in class org.codejive.properties.Cursor
 
flatten() - Method in class org.codejive.properties.Properties
Deprecated.
Use flattened()
flattened() - Method in class org.codejive.properties.Properties
Returns the current properties table with all its defaults as a single flattened properties table.

G

get(Object) - Method in class org.codejive.properties.Properties
 
getComment(String) - Method in class org.codejive.properties.Properties
Gather all the comments directly before the given key and return them as a list.
getProperty(String) - Method in class org.codejive.properties.Properties
Searches for the property with the specified key in this property list.
getProperty(String, String) - Method in class org.codejive.properties.Properties
Searches for the property with the specified key in this property list.
getPropertyComment(String) - Method in class org.codejive.properties.Properties
Searches for the property with the specified key in this property list.
getRaw(String) - Method in class org.codejive.properties.Properties
Works like get() but returns the raw value associated with the given raw key.

H

hasToken() - Method in class org.codejive.properties.Cursor
 

I

index(List<PropertiesParser.Token>, int) - Static method in class org.codejive.properties.Cursor
 
isEol() - Method in class org.codejive.properties.Cursor
 
isType(PropertiesParser.Type...) - Method in class org.codejive.properties.Cursor
 
isWhitespace() - Method in class org.codejive.properties.Cursor
 

L

last(List<PropertiesParser.Token>) - Static method in class org.codejive.properties.Cursor
 
list(PrintStream) - Method in class org.codejive.properties.Properties
Prints this property list out to the specified output stream.
list(PrintWriter) - Method in class org.codejive.properties.Properties
Prints this property list out to the specified writer.
load(Path) - Method in class org.codejive.properties.Properties
Loads the contents from the given file and stores it in this object.
load(InputStream) - Method in class org.codejive.properties.Properties
Loads the contents from the input and stores it in this object.
load(Reader) - Method in class org.codejive.properties.Properties
Loads the contents from the reader and stores it in this object.
loadFromXML(InputStream) - Method in class org.codejive.properties.Properties
Loads all the properties represented by the XML document on the specified input stream into this properties table.
loadProperties(Path) - Static method in class org.codejive.properties.Properties
Returns a Properties with the contents read from the given file.
loadProperties(InputStream) - Static method in class org.codejive.properties.Properties
Returns a Properties with the contents read from the given stream.
loadProperties(Reader) - Static method in class org.codejive.properties.Properties
Returns a Properties with the contents read from the given reader.

N

next() - Method in class org.codejive.properties.Cursor
 
nextCount(Predicate<PropertiesParser.Token>) - Method in class org.codejive.properties.Cursor
 
nextIf(PropertiesParser.Type) - Method in class org.codejive.properties.Cursor
 
nextIf(Predicate<PropertiesParser.Token>) - Method in class org.codejive.properties.Cursor
 
nextWhile(Predicate<PropertiesParser.Token>) - Method in class org.codejive.properties.Cursor
 

O

org.codejive.properties - package org.codejive.properties
 

P

position() - Method in class org.codejive.properties.Cursor
 
prev() - Method in class org.codejive.properties.Cursor
 
prevCount(Predicate<PropertiesParser.Token>) - Method in class org.codejive.properties.Cursor
 
prevIf(PropertiesParser.Type) - Method in class org.codejive.properties.Cursor
 
prevIf(Predicate<PropertiesParser.Token>) - Method in class org.codejive.properties.Cursor
 
prevWhile(Predicate<PropertiesParser.Token>) - Method in class org.codejive.properties.Cursor
 
Properties - Class in org.codejive.properties
This class is a replacement for java.util.Properties, with the difference that it properly supports comments both for reading and writing.
Properties() - Constructor for class org.codejive.properties.Properties
 
Properties(Properties) - Constructor for class org.codejive.properties.Properties
 
propertyNames() - Method in class org.codejive.properties.Properties
Returns an enumeration of keys from this property list where the key and its corresponding value are strings, including distinct keys in the default property list if a key of the same name has not already been found from the main properties table.
put(String, String) - Method in class org.codejive.properties.Properties
 
putCommented(String, String, String...) - Method in class org.codejive.properties.Properties
Associates the specified value with the specified key in this properties table.
putRaw(String, String) - Method in class org.codejive.properties.Properties
Works like put() but uses raw values for keys and values.

R

raw() - Method in class org.codejive.properties.Cursor
 
rawEntrySet() - Method in class org.codejive.properties.Properties
Works like entrySet() but returning the raw values.
rawKeySet() - Method in class org.codejive.properties.Properties
Works like keySet() but returning the keys' raw values.
rawValues() - Method in class org.codejive.properties.Properties
Works like values() but returning the raw values.
remove() - Method in class org.codejive.properties.Cursor
 
remove(Object) - Method in class org.codejive.properties.Properties
 
replace(PropertiesParser.Token) - Method in class org.codejive.properties.Cursor
 

S

setComment(String, String...) - Method in class org.codejive.properties.Properties
Adds the given comments to the item indicated by the given key.
setComment(String, List<String>) - Method in class org.codejive.properties.Properties
Adds the list of comments to the item indicated by the given key.
setProperty(String, String, String...) - Method in class org.codejive.properties.Properties
Associates the specified value with the specified key in this properties table.
skip(int) - Method in class org.codejive.properties.Cursor
 
store(Path, String...) - Method in class org.codejive.properties.Properties
Stores the contents of this object to the given file.
store(OutputStream, String...) - Method in class org.codejive.properties.Properties
Stores the contents of this object to the given file.
store(Writer, String...) - Method in class org.codejive.properties.Properties
Stores the contents of this object to the given file.
storeToXML(OutputStream, String) - Method in class org.codejive.properties.Properties
Emits an XML document representing all the properties contained in this table.
storeToXML(OutputStream, String, String) - Method in class org.codejive.properties.Properties
Emits an XML document representing all the properties contained in this table.
stringPropertyNames() - Method in class org.codejive.properties.Properties
Returns an unmodifiable set of keys from this property list where the key and its corresponding value are strings, including distinct keys in the default property list if a key of the same name has not already been found from the main properties table.

T

text() - Method in class org.codejive.properties.Cursor
 
token() - Method in class org.codejive.properties.Cursor
 
toString() - Method in class org.codejive.properties.Cursor
 
type() - Method in class org.codejive.properties.Cursor
 

U

unescaped() - Method in class org.codejive.properties.Properties
Returns a copy of the object where all Unicode escape sequences, in keys and values, have been decoded into their actual Unicode characters.
A C E F G H I L N O P R S T U 
Skip navigation links

Copyright © 2024. All rights reserved.