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

com.helger.css.media.ICSSMediaList Maven / Gradle / Ivy

There is a newer version: 5.0.12
Show newest version
/**
 * Copyright (C) 2014-2016 Philip Helger (www.helger.com)
 * philip[at]helger[dot]com
 *
 * Licensed 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 com.helger.css.media;

import java.io.Serializable;
import java.util.Set;

import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;

import com.helger.commons.annotation.ReturnsMutableCopy;

/**
 * A read only version of a CSS media list
 *
 * @author Philip Helger
 */
public interface ICSSMediaList extends Serializable
{
  /**
   * @return The number of contained media. Always ≥ 0.
   */
  @Nonnegative
  int getMediaCount ();

  /**
   * @return true if any explicit media is defined,
   *         false if not.
   */
  boolean hasAnyMedia ();

  /**
   * @return true if no explicit media is defined,
   *         false if a media is defined.
   */
  boolean hasNoMedia ();

  /**
   * @return true if no explicit media is defined or if
   *         {@link ECSSMedium#ALL} is contained.
   */
  boolean hasNoMediaOrAll ();

  /**
   * Check if the passed medium is explicitly specified
   *
   * @param eMedium
   *        The medium to be checked. May be null.
   * @return true if it is contained, false otherwise
   */
  boolean containsMedium (@Nullable ECSSMedium eMedium);

  /**
   * Check if the passed medium or the {@link ECSSMedium#ALL} is explicitly
   * specified
   *
   * @param eMedium
   *        The medium to be checked. May be null.
   * @return true if the passed medium or the "all" medium is
   *         contained, false otherwise
   */
  boolean containsMediumOrAll (@Nullable ECSSMedium eMedium);

  /**
   * Check if the passed medium is usable for the screen. This is the case if
   * either the "screen" medium, the "all" medium or no medium at all is
   * contained.
   *
   * @return true if the media list is usable for screen display
   */
  boolean isForScreen ();

  /**
   * @return A copy of all specified media in the order they were specified.
   *         Never null but maybe empty.
   */
  @Nonnull
  @ReturnsMutableCopy
  Set  getAllMedia ();

  /**
   * @return A non-null but maybe empty String with all media in
   *         the order they where inserted and separated by
   *         {@value CSSMediaList#DEFAULT_MEDIA_STRING_SEPARATOR}
   * @see #getMediaString(String)
   */
  @Nonnull
  String getMediaString ();

  /**
   * @param sSeparator
   *        The separator to be used. May not be null.
   * @return A non-null but maybe empty String with all media in
   *         the order they where inserted and separated by the specified
   *         separator
   */
  @Nonnull
  String getMediaString (@Nonnull String sSeparator);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy