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

net.sf.sevenzipjbinding.PropertyInfo Maven / Gradle / Ivy

Go to download

7-Zip-JBinding is a free cross-platform java binding of 7-Zip free compress/decompress library (http://www.7-zip.org/, http://p7zip.sourceforge.net/)

There is a newer version: 16.02-2.01
Show newest version
package net.sf.sevenzipjbinding;

/**
 * Container for property information attributes.
 * 
 * @author Boris Brodski
 * @since 4.65-1
 */
public class PropertyInfo {
    /**
     * Name of property. null for some archive types.
     */
    public String name;

    /**
     * Native property index
     */
    public PropID propID;

    /**
     * Type of the property values
     */
    public Class varType;

    /**
     * {@inheritDoc}
     */
    @Override
    public String toString() {
        return "name=" + name + "; propID=" + propID + "; varType=" + varType.getCanonicalName();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy