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

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

Best Java code snippets using org.opencms.relations.CmsRelationType.getAllStrong (Showing top 2 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-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.relationsCmsRelationTypegetAllStrong

Javadoc

Returns all strong relation types.

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.
  • filterStrong
    Returns all strong relation types in the given list.
  • 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.
  • getAllInternal,
  • getAllNotDefinedInContent,
  • getAllUserDefined,
  • getAllWeak,
  • getId,
  • getName,
  • getNameForXml,
  • getType,
  • hashCode

Popular in Java

  • Running tasks concurrently on multiple threads
  • runOnUiThread (Activity)
  • startActivity (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • Point (java.awt)
    A point representing a location in (x, y) coordinate space, specified in integer precision.
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • URI (java.net)
    Represents a Uniform Resource Identifier (URI) reference. Aside from some minor deviations noted bel
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
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