/*

   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.batik.css.engine.value.svg12;

import org.apache.batik.css.engine.value.AbstractValue;
import org.w3c.dom.DOMException;
import org.w3c.dom.css.CSSValue;

This class represents an device-specific color value.
Version:$Id: DeviceColor.java 1617286 2014-08-11 14:03:51Z lbernardo $
/** * This class represents an device-specific color value. * * @version $Id: DeviceColor.java 1617286 2014-08-11 14:03:51Z lbernardo $ */
public class DeviceColor extends AbstractValue { public static final String DEVICE_GRAY_COLOR_FUNCTION = "device-gray"; public static final String DEVICE_RGB_COLOR_FUNCTION = "device-rgb"; public static final String DEVICE_CMYK_COLOR_FUNCTION = "device-cmyk"; public static final String DEVICE_NCHANNEL_COLOR_FUNCTION = "device-nchannel"; protected boolean nChannel;
The color count.
/** * The color count. */
protected int count;
The colors.
/** * The colors. */
protected float[] colors = new float[5];
Creates a new DeviceColor.
Params:
  • nChannel – true for a device-nchannel() color, false for Gray, RGB and CMYK
/** * Creates a new DeviceColor. * @param nChannel true for a device-nchannel() color, false for Gray, RGB and CMYK */
public DeviceColor(boolean nChannel) { this.nChannel = nChannel; } /** * Implements {@link * org.apache.batik.css.engine.value.Value#getCssValueType()}. */ public short getCssValueType() { return CSSValue.CSS_CUSTOM; }
Indicates whether this color uses an N-Channel color space.
Returns:true if N-Channel is used
/** * Indicates whether this color uses an N-Channel color space. * @return true if N-Channel is used */
public boolean isNChannel() { return this.nChannel; }
Returns the number of colors.
/** * Returns the number of colors. */
public int getNumberOfColors() throws DOMException { return count; }
Returns the color at the given index.
/** * Returns the color at the given index. */
public float getColor(int i) throws DOMException { return colors[i]; }
A string representation of the current value.
/** * A string representation of the current value. */
public String getCssText() { StringBuffer sb = new StringBuffer( count * 8 ); if (nChannel) { sb.append(DEVICE_NCHANNEL_COLOR_FUNCTION); } else { switch (count) { case 1: sb.append(DEVICE_GRAY_COLOR_FUNCTION); break; case 3: sb.append(DEVICE_RGB_COLOR_FUNCTION); break; case 4: sb.append(DEVICE_CMYK_COLOR_FUNCTION); break; default: throw new IllegalStateException("Invalid number of components encountered"); } } sb.append('('); for (int i = 0; i < count; i++) { if (i > 0) { sb.append(", "); } sb.append(colors[i]); } sb.append( ')' ); return sb.toString(); }
Appends a color to the list.
/** * Appends a color to the list. */
public void append(float c) { if (count == colors.length) { float[] t = new float[count * 2]; System.arraycopy( colors, 0, t, 0, count ); colors = t; } colors[count++] = c; }
{@inheritDoc}
/** {@inheritDoc} */
public String toString() { return getCssText(); } }