Package com.helger.css.decl
Class CSSMediaExpression
- java.lang.Object
-
- com.helger.css.decl.CSSMediaExpression
-
- All Implemented Interfaces:
ICSSSourceLocationAware,ICSSVersionAware,ICSSWriteable
@NotThreadSafe public class CSSMediaExpression extends Object implements ICSSWriteable, ICSSVersionAware, ICSSSourceLocationAware
Represents a single media expression
-
-
Constructor Summary
Constructors Constructor Description CSSMediaExpression(ECSSMediaExpressionFeature eFeature)CSSMediaExpression(ECSSMediaExpressionFeature eFeature, CSSExpression aValue)CSSMediaExpression(String sFeature)CSSMediaExpression(String sFeature, CSSExpression aValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetAsCSSString(ICSSWriterSettings aSettings, int nIndentLevel)Get the contents of this object as a serialized CSS string for writing to an output.StringgetFeature()ECSSVersiongetMinimumCSSVersion()CSSSourceLocationgetSourceLocation()CSSExpressiongetValue()inthashCode()voidsetSourceLocation(CSSSourceLocation aSourceLocation)Set the source location of the object, determined while parsing.StringtoString()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.helger.css.ICSSWriteable
getAsCSSString, getAsCSSString
-
-
-
-
Constructor Detail
-
CSSMediaExpression
public CSSMediaExpression(@Nonnull ECSSMediaExpressionFeature eFeature)
-
CSSMediaExpression
public CSSMediaExpression(@Nonnull ECSSMediaExpressionFeature eFeature, @Nullable CSSExpression aValue)
-
CSSMediaExpression
public CSSMediaExpression(@Nonnull @Nonempty String sFeature, @Nullable CSSExpression aValue)
-
-
Method Detail
-
getValue
@Nullable public final CSSExpression getValue()
-
getAsCSSString
@Nonnull @Nonempty public String getAsCSSString(@Nonnull ICSSWriterSettings aSettings, @Nonnegative int nIndentLevel)
Description copied from interface:ICSSWriteableGet the contents of this object as a serialized CSS string for writing to an output.- Specified by:
getAsCSSStringin interfaceICSSWriteable- Parameters:
aSettings- The settings to be used to format the output. May not benull.nIndentLevel- The current indentation level- Returns:
- The content of this object as CSS string. Never
null.
-
getMinimumCSSVersion
@Nonnull public ECSSVersion getMinimumCSSVersion()
- Specified by:
getMinimumCSSVersionin interfaceICSSVersionAware- Returns:
- The minimum CSS version that is required to read or write this
artifact. May not be
null.
-
getSourceLocation
@Nullable public final CSSSourceLocation getSourceLocation()
- Specified by:
getSourceLocationin interfaceICSSSourceLocationAware- Returns:
- The source location of this object when it was read by the parser.
May be
nullif an object was not read but manually created.
-
setSourceLocation
public final void setSourceLocation(@Nullable CSSSourceLocation aSourceLocation)
Description copied from interface:ICSSSourceLocationAwareSet the source location of the object, determined while parsing.- Specified by:
setSourceLocationin interfaceICSSSourceLocationAware- Parameters:
aSourceLocation- The source location to use. May benull.
-
-