sirius.kernel.nls.SortedProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sirius-kernel Show documentation
Show all versions of sirius-kernel Show documentation
Provides common core classes and the microkernel powering all Sirius applications
/*
* Made with all the love in the world
* by scireum in Remshalden, Germany
*
* Copyright by scireum GmbH
* http://www.scireum.de - [email protected]
*/
package sirius.kernel.nls;
import sirius.kernel.commons.Explain;
import java.util.Collections;
import java.util.Enumeration;
import java.util.Properties;
import java.util.Vector;
/**
* Provides a {@link Properties} class with keys sorted lexicographically
*/
class SortedProperties extends Properties {
private static final long serialVersionUID = -8585151811583014130L;
@Override
@SuppressWarnings({"unchecked", "rawtypes", "UseOfObsoleteCollectionType", "squid:S1149"})
@Explain("We use an old Java API here, which requires those collections")
public synchronized Enumeration
© 2015 - 2025 Weber Informatics LLC | Privacy Policy