congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
XLink.getShow
Code IndexAdd Tabnine to your IDE (free)

How to use
getShow
method
in
org.apache.sis.xml.XLink

Best Java code snippets using org.apache.sis.xml.XLink.getShow (Showing top 4 results out of 315)

origin: org.apache.sis.core/sis-utility

/**
 * Communicates the desired presentation of the ending resource on traversal
 * from the starting resource. It's value should be treated as follows:
 *
 * <ul>
 *   <li>new: load ending resource in a new window, frame, pane, or other presentation context</li>
 *   <li>replace: load the resource in the same window, frame, pane, or other presentation context</li>
 *   <li>embed: load ending resource in place of the presentation of the starting resource</li>
 *   <li>other: behavior is unconstrained; examine other markup in the link for hints</li>
 *   <li>none: behavior is unconstrained</li>
 * </ul>
 *
 * @return the current value, or {@code null} if none.
 * @category xlink
 */
@XmlAttribute(name = "show", namespace = Namespaces.XLINK)
public final XLink.Show getShow() {
  final XLink link = xlink(false);
  return (link != null) ? link.getShow() : null;
}
origin: apache/sis

/**
 * Communicates the desired presentation of the ending resource on traversal
 * from the starting resource. It's value should be treated as follows:
 *
 * <ul>
 *   <li>new: load ending resource in a new window, frame, pane, or other presentation context</li>
 *   <li>replace: load the resource in the same window, frame, pane, or other presentation context</li>
 *   <li>embed: load ending resource in place of the presentation of the starting resource</li>
 *   <li>other: behavior is unconstrained; examine other markup in the link for hints</li>
 *   <li>none: behavior is unconstrained</li>
 * </ul>
 *
 * @return the current value, or {@code null} if none.
 * @category xlink
 */
@XmlAttribute(name = "show", namespace = Namespaces.XLINK)
public final XLink.Show getShow() {
  final XLink link = xlink(false);
  return (link != null) ? link.getShow() : null;
}
origin: apache/sis

/**
 * Returns a string representation of this object. The default implementation returns the
 * simple class name followed by non-null attributes, as in the example below:
 *
 * {@preformat text
 *     XLink[type="locator", href="urn:ogc:def:method:EPSG::4326"]
 * }
 */
@Override
public String toString() {
  final StringBuilder buffer = new StringBuilder(64);
  buffer.append(Classes.getShortClassName(this)).append('[');
  append(buffer, "type",    getType());
  append(buffer, "href",    getHRef());
  append(buffer, "role",    getRole());
  append(buffer, "arcrole", getArcRole());
  append(buffer, "title",   getTitle());
  append(buffer, "show",    getShow());
  append(buffer, "actuate", getActuate());
  append(buffer, "label",   getLabel());
  append(buffer, "from",    getFrom());
  append(buffer, "to",      getTo());
  return buffer.append(']').toString();
}
origin: org.apache.sis.core/sis-utility

/**
 * Returns a string representation of this object. The default implementation returns the
 * simple class name followed by non-null attributes, as in the example below:
 *
 * {@preformat text
 *     XLink[type="locator", href="urn:ogc:def:method:EPSG::4326"]
 * }
 */
@Override
public String toString() {
  final StringBuilder buffer = new StringBuilder(64);
  buffer.append(Classes.getShortClassName(this)).append('[');
  append(buffer, "type",    getType());
  append(buffer, "href",    getHRef());
  append(buffer, "role",    getRole());
  append(buffer, "arcrole", getArcRole());
  append(buffer, "title",   getTitle());
  append(buffer, "show",    getShow());
  append(buffer, "actuate", getActuate());
  append(buffer, "label",   getLabel());
  append(buffer, "from",    getFrom());
  append(buffer, "to",      getTo());
  return buffer.append(']').toString();
}
org.apache.sis.xmlXLinkgetShow

Javadoc

Returns the desired presentation of the ending resource on traversal from the starting resource. It's value should be treated as follows:
  • new: load ending resource in a new window, frame, pane, or other presentation context
  • replace: load the resource in the same window, frame, pane, or other presentation context
  • embed: load ending resource in place of the presentation of the starting resource
  • other: behavior is unconstrained; examine other markup in the link for hints
  • none: behavior is unconstrained

Popular methods of XLink

  • <init>
    Creates a new link as a copy of the given link.
  • setHRef
    Sets the URN to a resources.
  • equals
    Compares this XLink with the given object for equality.
  • getHRef
    Returns a URN to an external resources, or to an other part of a XML document, or an identifier.
  • getType
    Returns the type of link. May have one of the following values: * simple: a simple link * extended:
  • hashCode
    Returns a hash code value for this XLink.
  • setActuate
    Sets the desired timing of traversal from the starting resource to the ending resource.
  • setRole
    Sets the URI reference for some description of the arc role.
  • setShow
    Sets the desired presentation of the ending resource on traversal from the starting resource.
  • setTitle
    Sets a human-readable string with a short description for the arc.
  • setType
    Sets the type of link. Any value different than org.apache.sis.xml.XLink.Type#AUTO (including null)
  • append
    Appends the given attribute in the given buffer if the attribute value is not null. If the given val
  • setType,
  • append,
  • canWrite,
  • fieldMask,
  • getActuate,
  • getArcRole,
  • getFrom,
  • getLabel,
  • getRole

Popular in Java

  • Parsing JSON documents to java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • getResourceAsStream (ClassLoader)
  • scheduleAtFixedRate (Timer)
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • JLabel (javax.swing)
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • PhpStorm for WordPress
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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