Tabnine Logo
RcObjectMetadata.getDatePublished
Code IndexAdd Tabnine to your IDE (free)

How to use
getDatePublished
method
in
org.rescarta.metadata.RcObjectMetadata

Best Java code snippets using org.rescarta.metadata.RcObjectMetadata.getDatePublished (Showing top 6 results out of 315)

origin: org.rescarta.rc-web/rc-web

private String getLabel(RcObjectMetadata rcObjMd) {
  if ((rcObjMd.getObjectType() == RcObjectType.SERIAL || rcObjMd.getObjectType() == RcObjectType.NEWSPAPER) && rcObjMd.getDatePublished() != null) {
    return rcObjMd.getTitle() + " " + rcObjMd.getDatePublished();
  }
  else {
    return rcObjMd.getTitle();
  }
}
origin: org.rescarta.rc-indexer/rc-indexer

if (rcObjectMetadata.getDatePublished() != null) {
  datePublishedField = new Field("pub_date", rcObjectMetadata.getDatePublished(), Field.Store.YES, Field.Index.ANALYZED, Field.TermVector.WITH_POSITIONS_OFFSETS);
origin: org.rescarta.rc-cmgr/rc-cmgr

if (rcObjectMetadata.getDatePublished() != null) {
  text += rcObjectMetadata.getDatePublished();
origin: org.rescarta.rc-web/rc-web

if (rcObjMd1.getDatePublished() != null) {
  s1 = rcObjMd1.getDatePublished();
if (rcObjMd2.getDatePublished() != null) {
  s2 = rcObjMd2.getDatePublished();
origin: org.rescarta.rc-cmgr/rc-cmgr

if (rcObjectMetadata.getDatePublished() != null) {
  text += rcObjectMetadata.getDatePublished();
origin: org.rescarta.rc-cmgr/rc-cmgr

if (rcObjectMetadataToAdd[i].getDatePublished() != null && rcObjectMetadataToAdd[i].getDatePublished().trim().length() > 0 && (!RcDateUtils.isISO8601(rcObjectMetadataToAdd[i].getDatePublished())))
  throw new RcMetadataException("The date published for title \"" + rcObjectMetadataToAdd[i].getTitle() + "\" is not ISO8601 compliant.");
org.rescarta.metadataRcObjectMetadatagetDatePublished

Popular methods of RcObjectMetadata

  • getObjectType
  • getId
  • getTitle
  • clearStructure
  • getNames
  • loadStructure
  • readMets
  • getAggregator
  • getDateCaptured
  • getInstitutionId
  • getParentFileSystemDataSourceMetadata
  • getRootId
  • getParentFileSystemDataSourceMetadata,
  • getRootId,
  • clone,
  • getLanguages,
  • getMods,
  • readMods,
  • setRootId,
  • writeMets,
  • getAbstract

Popular in Java

  • Creating JSON documents from java classes using gson
  • addToBackStack (FragmentTransaction)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getSharedPreferences (Context)
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Notification (javax.management)
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top Vim plugins
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