com.phloc.css.property.CSSPropertyEnumOrRect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phloc-css-jdk5 Show documentation
Show all versions of phloc-css-jdk5 Show documentation
phloc CSS parser an other components
The newest version!
/**
* Copyright (C) 2006-2014 phloc systems
* http://www.phloc.com
* office[at]phloc[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.phloc.css.property;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.OverridingMethodsMustInvokeSuper;
import javax.annotation.concurrent.NotThreadSafe;
import com.phloc.commons.annotations.Nonempty;
import com.phloc.css.property.customizer.ICSSPropertyCustomizer;
import com.phloc.css.utils.CSSRectHelper;
/**
* CSS property that is either an enumeration or a rectangle (e.g. clip)
*
* @author Philip Helger
*/
@NotThreadSafe
public class CSSPropertyEnumOrRect extends CSSPropertyEnum
{
public CSSPropertyEnumOrRect (@Nonnull final ECSSProperty eProp, @Nonnull @Nonempty final String... aEnumValues)
{
super (eProp, aEnumValues);
}
public CSSPropertyEnumOrRect (@Nonnull final ECSSProperty eProp,
@Nullable final ICSSPropertyCustomizer aCustomizer,
@Nonnull @Nonempty final String... aEnumValues)
{
super (eProp, aCustomizer, aEnumValues);
}
public CSSPropertyEnumOrRect (@Nonnull final ECSSProperty eProp,
@Nonnull @Nonempty final Iterable aEnumValues)
{
super (eProp, aEnumValues);
}
public CSSPropertyEnumOrRect (@Nonnull final ECSSProperty eProp,
@Nullable final ICSSPropertyCustomizer aCustomizer,
@Nonnull @Nonempty final Iterable aEnumValues)
{
super (eProp, aCustomizer, aEnumValues);
}
@Override
@OverridingMethodsMustInvokeSuper
public boolean isValidValue (@Nullable final String sValue)
{
return super.isValidValue (sValue) || CSSRectHelper.isRectValue (sValue);
}
@Override
@Nonnull
public CSSPropertyEnumOrRect getClone (@Nonnull final ECSSProperty eProp)
{
return new CSSPropertyEnumOrRect (eProp, getCustomizer (), directGetEnumValues ());
}
}