All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.juneau.dto.html5.Link Maven / Gradle / Ivy

There is a newer version: 9.0.1
Show newest version
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance            *
// * with the License.  You may obtain a copy of the License at                                                              *
// *                                                                                                                         *
// *  http://www.apache.org/licenses/LICENSE-2.0                                                                             *
// *                                                                                                                         *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an  *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the        *
// * specific language governing permissions and limitations under the License.                                              *
// ***************************************************************************************************************************
package org.apache.juneau.dto.html5;

import java.net.*;
import java.net.URI;

import org.apache.juneau.*;
import org.apache.juneau.annotation.*;

/**
 * DTO for an HTML {@doc HTML5.document-metadata#the-link-element }
 * element.
 *
 * 
See Also:
*
    *
*/ @Bean(typeName="link") public class Link extends HtmlElementVoid { /** * {@doc HTML5.document-metadata#attr-link-crossorigin crossorigin} * attribute. * *

* How the element handles cross-origin requests. * * @param crossorigin The new value for this attribute. * @return This object (for method chaining). */ public final Link crossorigin(String crossorigin) { attr("crossorigin", crossorigin); return this; } /** * {@doc HTML5.document-metadata#attr-link-href href} attribute. * *

* Address of the hyperlink. * *

* The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}. * Strings must be valid URIs. * *

* URIs defined by {@link UriResolver} can be used for values. * * @param href * The new value for this attribute. * Typically a {@link URL} or {@link String}. * @return This object (for method chaining). */ public final Link href(Object href) { attrUri("href", href); return this; } /** * {@doc HTML5.document-metadata#attr-link-hreflang hreflang} * attribute. * *

* Language of the linked resource. * * @param hreflang The new value for this attribute. * @return This object (for method chaining). */ public final Link hreflang(String hreflang) { attr("hreflang", hreflang); return this; } /** * {@doc HTML5.document-metadata#attr-link-media media} attribute. * *

* Applicable media. * * @param media The new value for this attribute. * @return This object (for method chaining). */ public final Link media(String media) { attr("media", media); return this; } /** * {@doc HTML5.document-metadata#attr-link-rel rel} attribute. * *

* Relationship between the document containing the hyperlink and the destination resource. * * @param rel The new value for this attribute. * @return This object (for method chaining). */ public final Link rel(String rel) { attr("rel", rel); return this; } /** * {@doc HTML5.links#attr-link-sizes sizes} attribute. * *

* Sizes of the icons (for rel="icon"). * * @param sizes The new value for this attribute. * @return This object (for method chaining). */ public final Link sizes(String sizes) { attr("sizes", sizes); return this; } /** * {@doc HTML5.document-metadata#attr-link-type type} attribute. * *

* Hint for the type of the referenced resource. * * @param type The new value for this attribute. * @return This object (for method chaining). */ public final Link type(String type) { attr("type", type); return this; } //----------------------------------------------------------------------------------------------------------------- // Overridden methods //----------------------------------------------------------------------------------------------------------------- @Override /* HtmlElement */ public final Link _class(String _class) { super._class(_class); return this; } @Override /* HtmlElement */ public final Link id(String id) { super.id(id); return this; } @Override /* HtmlElement */ public final Link style(String style) { super.style(style); return this; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy