blob: addf32d652b5060d1b60aee7a8f33d17caf3e6c2 [file] [log] [blame]
/* ====================================================================
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.poi.hwmf.record;
/**
* The HatchStyle Enumeration specifies the hatch pattern.
*/
public enum HwmfHatchStyle {
/** ----- - A horizontal hatch */
HS_HORIZONTAL(0x0000, 0x000000FF000000FFL),
/** ||||| - A vertical hatch */
HS_VERTICAL(0x0001, 0x8888888888888888L),
/** \\\\\ - A 45-degree downward, left-to-right hatch. */
HS_FDIAGONAL(0x0002, 0x0804020180402010L),
/** ///// - A 45-degree upward, left-to-right hatch. */
HS_BDIAGONAL(0x0003, 0x1020408001020408L),
/** +++++ - A horizontal and vertical cross-hatch. */
HS_CROSS(0x0004, 0x111111FF111111FFL),
/** xxxxx - A 45-degree crosshatch. */
HS_DIAGCROSS(0x0005, 0x1824428181422418L),
/** The hatch is not a pattern, but is a solid color. */
HS_SOLIDCLR(0x0006, 0xFFFFFFFFFFFFFFFFL),
/** The hatch is not a pattern, but is a dithered color. */
HS_DITHEREDCLR(0x0007, 0xAA55AA55AA55AA55L),
/** The hatch is not a pattern, but is a solid color, defined by the current text (foreground) color. */
HS_SOLIDTEXTCLR(0x0008, 0xFFFFFFFFFFFFFFFFL),
/** The hatch is not a pattern, but is a dithered color, defined by the current text (foreground) color. */
HS_DITHEREDTEXTCLR(0x0009, 0xAA55AA55AA55AA55L),
/** The hatch is not a pattern, but is a solid color, defined by the current background color. */
HS_SOLIDBKCLR(0x000A, 0x0000000000000000L),
/** The hatch is not a pattern, but is a dithered color, defined by the current background color. */
HS_DITHEREDBKCLR(0x000B, 0xAA55AA55AA55AA55L)
;
private final int flag;
private final long pattern;
HwmfHatchStyle(int flag, long pattern) {
this.flag = flag;
this.pattern = pattern;
}
public int getFlag() {
return flag;
}
public long getPattern() {
return pattern;
}
public static HwmfHatchStyle valueOf(int flag) {
for (HwmfHatchStyle hs : values()) {
if (hs.flag == flag) return hs;
}
return null;
}
}