Codota Logo
CmsRelationType.filterStrong
Code IndexAdd Codota to your IDE (free)

How to use
filterStrong
method
in
org.opencms.relations.CmsRelationType

Best Java code snippets using org.opencms.relations.CmsRelationType.filterStrong (Showing top 4 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: org.opencms/opencms-solr

/**
 * Returns all strong relation types.<p>
 * 
 * @return a list of {@link CmsRelationType} objects
 */
public static List getAllStrong() {
  return filterStrong(getAll());
}
origin: org.opencms/opencms-core

/**
 * Returns all strong relation types.<p>
 *
 * @return a list of {@link CmsRelationType} objects
 */
public static List<CmsRelationType> getAllStrong() {
  return filterStrong(getAll());
}
origin: org.opencms/opencms-core

/**
 * Returns an extended filter with strong type restriction.<p>
 *
 * @return an extended filter with strong type restriction
 */
public CmsRelationFilter filterStrong() {
  CmsRelationFilter filter = (CmsRelationFilter)clone();
  if (filter.m_types.isEmpty()) {
    filter.m_types.addAll(CmsRelationType.getAllStrong());
  } else {
    filter.m_types = new HashSet<CmsRelationType>(CmsRelationType.filterStrong(filter.m_types));
  }
  return filter;
}
origin: org.opencms/opencms-solr

/**
 * Returns an extended filter with strong type restriction.<p>
 * 
 * @return an extended filter with strong type restriction
 */
public CmsRelationFilter filterStrong() {
  CmsRelationFilter filter = (CmsRelationFilter)this.clone();
  if (filter.m_types.isEmpty()) {
    filter.m_types.addAll(CmsRelationType.getAllStrong());
  } else {
    filter.m_types = new HashSet(CmsRelationType.filterStrong(filter.m_types));
  }
  return filter;
}
org.opencms.relationsCmsRelationTypefilterStrong

Javadoc

Returns all strong relation types in the given list.

Popular methods of CmsRelationType

  • getLocalizedName
    Returns a localized name for the given relation type.
  • <init>
    Private constructor for system relation types.
  • filterDefinedInContent
    Returns all relation types in the given list that define relations in the content.
  • filterInternal
    Returns all internal defined relation types in the given list.
  • filterNotDefinedInContent
    Returns all relation types in the given list that are not defined in the content.
  • filterUserDefined
    Returns all user defined relation types in the given list.
  • filterWeak
    Returns all weak relation types in the given list.
  • getAll
    Returns all relation types.
  • getAllDefinedInContent
    Returns all relation types for relations defined in the content.
  • getAllInternal
    Returns all internally defined relation types.
  • getAllNotDefinedInContent
    Returns all relation types for relations that are not defined in the content.
  • getAllStrong
    Returns all strong relation types.
  • getAllNotDefinedInContent,
  • getAllStrong,
  • getAllUserDefined,
  • getAllWeak,
  • getId,
  • getName,
  • getNameForXml,
  • getType,
  • hashCode

Popular in Java

  • Making http requests using okhttp
  • setRequestProperty (URLConnection)
  • scheduleAtFixedRate (Timer)
    Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
  • runOnUiThread (Activity)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • FileOutputStream (java.io)
    A file output stream is an output stream for writing data to aFile or to a FileDescriptor. Whether
  • TimerTask (java.util)
    A task that can be scheduled for one-time or repeated execution by a Timer.
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now