congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
XLink.getActuate
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: apache/sis

/**
 * Communicates the desired timing of traversal from the starting resource to the ending resource.
 * It's value should be treated as follows:
 *
 * <ul>
 *   <li>onLoad: traverse to the ending resource immediately on loading the starting resource</li>
 *   <li>onRequest: traverse from the starting resource to the ending resource only on a post-loading event triggered for this purpose</li>
 *   <li>other: behavior is unconstrained; examine other markup in link for hints</li>
 *   <li>none: behavior is unconstrained</li>
 * </ul>
 *
 * @return the current value, or {@code null} if none.
 * @category xlink
 */
@XmlAttribute(name = "actuate", namespace = Namespaces.XLINK)
public final XLink.Actuate getActuate() {
  final XLink link = xlink(false);
  return (link != null) ? link.getActuate() : null;
}
origin: org.apache.sis.core/sis-utility

/**
 * Communicates the desired timing of traversal from the starting resource to the ending resource.
 * It's value should be treated as follows:
 *
 * <ul>
 *   <li>onLoad: traverse to the ending resource immediately on loading the starting resource</li>
 *   <li>onRequest: traverse from the starting resource to the ending resource only on a post-loading event triggered for this purpose</li>
 *   <li>other: behavior is unconstrained; examine other markup in link for hints</li>
 *   <li>none: behavior is unconstrained</li>
 * </ul>
 *
 * @return the current value, or {@code null} if none.
 * @category xlink
 */
@XmlAttribute(name = "actuate", namespace = Namespaces.XLINK)
public final XLink.Actuate getActuate() {
  final XLink link = xlink(false);
  return (link != null) ? link.getActuate() : null;
}
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();
}
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();
}
org.apache.sis.xmlXLinkgetActuate

Javadoc

Returns the desired timing of traversal from the starting resource to the ending resource. It's value should be treated as follows:
  • onLoad: traverse to the ending resource immediately on loading the starting resource
  • onRequest: traverse from the starting resource to the ending resource only on a post-loading event triggered for this purpose
  • other: behavior is unconstrained; examine other markup in 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,
  • getArcRole,
  • getFrom,
  • getLabel,
  • getRole,
  • getShow

Popular in Java

  • Finding current android device location
  • getResourceAsStream (ClassLoader)
  • findViewById (Activity)
  • getSystemService (Context)
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • ImageIO (javax.imageio)
  • JFileChooser (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Github Copilot alternatives
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