Package com.helger.html.meta
Interface IMetaElementDeclaration
-
- All Superinterfaces:
com.helger.commons.name.IHasName,Serializable
- All Known Subinterfaces:
IMetaElement,IMutableMetaElement
- All Known Implementing Classes:
EDublinCoreMetaElement,EStandardMetaElement,MetaElement
public interface IMetaElementDeclaration extends com.helger.commons.name.IHasName, Serializable
Defines the properties for a meta tag declaration.- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StringgetScheme()Get the optional meta element scheme.EMetaElementTypegetType()default booleanisHttpEquiv()
-
-
-
Method Detail
-
getScheme
@Nullable String getScheme()
Get the optional meta element scheme.- Returns:
- the optional meta element scheme - can be
null
-
getType
@Nonnull EMetaElementType getType()
- Returns:
- The meta element type. Never
null. - Since:
- 8.0.2
-
isHttpEquiv
default boolean isHttpEquiv()
- Returns:
trueif it is a "http-equiv" tag and not a named tag.
-
-