Tabnine Logo
ThumbnailType.getFirstEquivalentProperty
Code IndexAdd Tabnine to your IDE (free)

How to use
getFirstEquivalentProperty
method
in
org.apache.xmpbox.type.ThumbnailType

Best Java code snippets using org.apache.xmpbox.type.ThumbnailType.getFirstEquivalentProperty (Showing top 12 results out of 315)

origin: apache/pdfbox

/**
 * Get Width
 * 
 * @return the width
 */
public Integer getWidth()
{
  AbstractField absProp = getFirstEquivalentProperty(WIDTH, IntegerType.class);
  if (absProp != null)
  {
    return ((IntegerType) absProp).getValue();
  }
  return null;
}
origin: apache/pdfbox

/**
 * Get Format
 * 
 * @return the format
 */
public String getFormat()
{
  AbstractField absProp = getFirstEquivalentProperty(FORMAT, ChoiceType.class);
  if (absProp != null)
  {
    return ((TextType) absProp).getStringValue();
  }
  return null;
}
origin: apache/pdfbox

/**
 * Get The img data
 * 
 * @return the img
 */
public String getImage()
{
  AbstractField absProp = getFirstEquivalentProperty(IMAGE, TextType.class);
  if (absProp != null)
  {
    return ((TextType) absProp).getStringValue();
  }
  return null;
}
origin: apache/pdfbox

/**
 * Get Height
 * 
 * @return the height
 */
public Integer getHeight()
{
  AbstractField absProp = getFirstEquivalentProperty(HEIGHT, IntegerType.class);
  if (absProp != null)
  {
    return ((IntegerType) absProp).getValue();
  }
  return null;
}
origin: com.github.lafa.pdfbox/xmpbox

/**
 * Get Width
 * 
 * @return the width
 */
public Integer getWidth()
{
  AbstractField absProp = getFirstEquivalentProperty(WIDTH, IntegerType.class);
  if (absProp != null)
  {
    return ((IntegerType) absProp).getValue();
  }
  return null;
}
origin: org.apache.pdfbox/xmpbox

/**
 * Get The img data
 * 
 * @return the img
 */
public String getImage()
{
  AbstractField absProp = getFirstEquivalentProperty(IMAGE, TextType.class);
  if (absProp != null)
  {
    return ((TextType) absProp).getStringValue();
  }
  return null;
}
origin: com.github.lafa.pdfbox/xmpbox

/**
 * Get Height
 * 
 * @return the height
 */
public Integer getHeight()
{
  AbstractField absProp = getFirstEquivalentProperty(HEIGHT, IntegerType.class);
  if (absProp != null)
  {
    return ((IntegerType) absProp).getValue();
  }
  return null;
}
origin: org.apache.pdfbox/xmpbox

/**
 * Get Width
 * 
 * @return the width
 */
public Integer getWidth()
{
  AbstractField absProp = getFirstEquivalentProperty(WIDTH, IntegerType.class);
  if (absProp != null)
  {
    return ((IntegerType) absProp).getValue();
  }
  return null;
}
origin: com.github.lafa.pdfbox/xmpbox

/**
 * Get The img data
 * 
 * @return the img
 */
public String getImage()
{
  AbstractField absProp = getFirstEquivalentProperty(IMAGE, TextType.class);
  if (absProp != null)
  {
    return ((TextType) absProp).getStringValue();
  }
  return null;
}
origin: org.apache.pdfbox/xmpbox

/**
 * Get Height
 * 
 * @return the height
 */
public Integer getHeight()
{
  AbstractField absProp = getFirstEquivalentProperty(HEIGHT, IntegerType.class);
  if (absProp != null)
  {
    return ((IntegerType) absProp).getValue();
  }
  return null;
}
origin: org.apache.pdfbox/xmpbox

/**
 * Get Format
 * 
 * @return the format
 */
public String getFormat()
{
  AbstractField absProp = getFirstEquivalentProperty(FORMAT, ChoiceType.class);
  if (absProp != null)
  {
    return ((TextType) absProp).getStringValue();
  }
  return null;
}
origin: com.github.lafa.pdfbox/xmpbox

/**
 * Get Format
 * 
 * @return the format
 */
public String getFormat()
{
  AbstractField absProp = getFirstEquivalentProperty(FORMAT, ChoiceType.class);
  if (absProp != null)
  {
    return ((TextType) absProp).getStringValue();
  }
  return null;
}
org.apache.xmpbox.typeThumbnailTypegetFirstEquivalentProperty

Popular methods of ThumbnailType

  • <init>
  • addSimpleProperty
  • getFormat
    Get Format
  • getHeight
    Get Height
  • getImage
    Get The img data
  • getWidth
    Get Width
  • setAttribute
  • setFormat
    Set Format
  • setHeight
    Set Height
  • setImage
    Set Image data
  • setWidth
    Set Width
  • setWidth

Popular in Java

  • Start an intent from android
  • getContentResolver (Context)
  • startActivity (Activity)
  • onCreateOptionsMenu (Activity)
  • String (java.lang)
  • Socket (java.net)
    Provides a client-side TCP socket.
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now