All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fugerit.java.doc.base.parser.DocParserUtil Maven / Gradle / Ivy

There is a newer version: 8.11.9
Show newest version
package org.fugerit.java.doc.base.parser;

import java.util.Properties;

public class DocParserUtil {

	private DocParserUtil() {}
	
	public static String doubleNested( Properties atts, String key1, String key2 ) {
		return atts.getProperty( key1, atts.getProperty( key2 ) );
	}
	
	public static int doubleNestedWithDefaultInt( Properties atts, String key1, String key2, String defValue ) {
		return Integer.valueOf( atts.getProperty( key1, atts.getProperty( key2, defValue ) ) );
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy