
org.exparity.io.internet.ContentEncodingFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exparity-data Show documentation
Show all versions of exparity-data Show documentation
Data scraping and manipulation utilities for Java
The newest version!
/**
*
*/
package org.exparity.io.internet;
/**
* @author Stewart Bissett
* @deprecated Use static factory methods on {@link ContentEncoding}
*/
@Deprecated
public class ContentEncodingFactory {
public ContentEncoding create(final String charsetName) {
return ContentEncoding.forName(charsetName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy