gpt4 book ai didi

org.apache.xmpbox.schema.XMPBasicSchema.getProperty()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-26 18:19:05 28 4
gpt4 key购买 nike

本文整理了Java中org.apache.xmpbox.schema.XMPBasicSchema.getProperty()方法的一些代码示例,展示了XMPBasicSchema.getProperty()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMPBasicSchema.getProperty()方法的具体详情如下:
包路径:org.apache.xmpbox.schema.XMPBasicSchema
类名称:XMPBasicSchema
方法名:getProperty

XMPBasicSchema.getProperty介绍

暂无

代码示例

代码示例来源:origin: apache/pdfbox

/**
 * Get the CreateDate property
 * 
 * @return the CreateDate property
 */
public DateType getCreateDateProperty()
{
  return (DateType) getProperty(CREATEDATE);
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the MetadataDate property
 * 
 * @return the MetadataDate property
 */
public DateType getMetadataDateProperty()
{
  return (DateType) getProperty(METADATADATE);
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the CreationTool property
 * 
 * @return the CreationTool property
 */
public TextType getCreatorToolProperty()
{
  return (TextType) getProperty(CREATORTOOL);
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the label property
 * 
 * @return the label property
 */
public TextType getLabelProperty()
{
  return (TextType) getProperty(LABEL);
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the BaseURL property
 * 
 * @return the base url property
 */
public TextType getBaseURLProperty()
{
  return (TextType) getProperty(BASEURL);
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the Identifier property
 * 
 * @return the Identifier property
 */
public ArrayProperty getIdentifiersProperty()
{
  return (ArrayProperty) getProperty(IDENTIFIER);
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the ModifyDate property
 * 
 * @return the ModifyDate property
 */
public DateType getModifyDateProperty()
{
  return (DateType) getProperty(MODIFYDATE);
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the Nickname property
 * 
 * @return the Nickname property
 */
public TextType getNicknameProperty()
{
  return (TextType) getProperty(NICKNAME);
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the Advisory property
 * 
 * @return the advisory property
 */
public ArrayProperty getAdvisoryProperty()
{
  return (ArrayProperty) getProperty(ADVISORY);
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the Rating property
 * 
 * @return the Rating property
 */
public IntegerType getRatingProperty()
{
  return ((IntegerType) getProperty(RATING));
}

代码示例来源:origin: apache/pdfbox

public DateType getModifierDateProperty()
{
  return (DateType) getProperty(MODIFIER_DATE);
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the label property value
 * 
 * @return the label value
 */
public String getLabel()
{
  TextType tt = ((TextType) getProperty(LABEL));
  return tt == null ? null : tt.getStringValue();
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the BaseURL property value
 * 
 * @return the base url value
 */
public String getBaseURL()
{
  TextType tt = ((TextType) getProperty(BASEURL));
  return tt == null ? null : tt.getStringValue();
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the MetadataDate property value
 * 
 * @return the MetadataDate value
 */
public Calendar getMetadataDate()
{
  DateType dt = ((DateType) getProperty(METADATADATE));
  return dt == null ? null : dt.getValue();
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the Nickname property value
 * 
 * @return the Nickname value
 */
public String getNickname()
{
  TextType tt = ((TextType) getProperty(NICKNAME));
  return tt == null ? null : tt.getStringValue();
}

代码示例来源:origin: apache/pdfbox

public Calendar getModifierDate()
{
  DateType modifierDate = (DateType) getProperty(MODIFIER_DATE);
  if (modifierDate != null)
  {
    return modifierDate.getValue();
  }
  return null;
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the Rating property value
 * 
 * @return the Rating value
 */
public Integer getRating()
{
  IntegerType it = ((IntegerType) getProperty(RATING));
  return it == null ? null : it.getValue();
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the CreationTool property value
 * 
 * @return the CreationTool value
 */
public String getCreatorTool()
{
  TextType tt = ((TextType) getProperty(CREATORTOOL));
  return tt == null ? null : tt.getStringValue();
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the ModifyDate property value
 * 
 * @return the ModifyDate value
 */
public Calendar getModifyDate()
{
  DateType modifyDate = (DateType) getProperty(MODIFYDATE);
  if (modifyDate != null)
  {
    return modifyDate.getValue();
  }
  return null;
}

代码示例来源:origin: apache/pdfbox

/**
 * Get the CreateDate property value
 * 
 * @return the CreateDate value
 */
public Calendar getCreateDate()
{
  DateType createDate = (DateType) getProperty(CREATEDATE);
  if (createDate != null)
  {
    return createDate.getValue();
  }
  return null;
}

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com