
edu.harvard.hul.ois.jhove.module.pdf.Name Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jhove-modules Show documentation
Show all versions of jhove-modules Show documentation
The JHOVE HUL validation modules.
The newest version!
/**********************************************************************
* Jhove - JSTOR/Harvard Object Validation Environment
* Copyright 2003 by JSTOR and the President and Fellows of Harvard College
**********************************************************************/
package edu.harvard.hul.ois.jhove.module.pdf;
/**
* Class for Tokens which represent PDF names.
*/
public class Name
extends StringValuedToken
{
/** Creates an instance of a Name */
public Name ()
{
super ();
}
/** Returns true if it's within the PDF/A implementation limit */
public boolean isPdfACompliant () {
return _value.getBytes().length <= 127;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy