Package org.apache.commons.compress.archivers.sevenz

Examples of org.apache.commons.compress.archivers.sevenz.SevenZMethod


                                                                  String encoding)
                    throws IOException {
                    SevenZArchiveOutputStream o = (SevenZArchiveOutputStream)
                        super.getArchiveOutputStream(f, encoding);
                    if (contentCompression != null) {
                        SevenZMethod m = (SevenZMethod)
                            Enum.valueOf(SevenZMethod.class,
                                         contentCompression.toUpperCase(Locale
                                                                        .US));
                        o.setContentCompression(m);
                    }
View Full Code Here

TOP

Related Classes of org.apache.commons.compress.archivers.sevenz.SevenZMethod

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.