net.sf.sevenzipjbinding.PropertyInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwrapper-7zip-jbinding Show documentation
Show all versions of jwrapper-7zip-jbinding Show documentation
${project.organization.name} JWrapper 7zip Jbinding
The newest version!
package net.sf.sevenzipjbinding;
/**
* Container for property information attributes.
*
* @author Boris Brodski
* @version 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();
}
}