org.pepstock.charba.client.enums.JoinStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of charba Show documentation
Show all versions of charba Show documentation
Charba, GWT Chart library based on CHART.JS
/**
Copyright 2017 Andrea "Stock" Stocchero
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 org.pepstock.charba.client.enums;
import org.pepstock.charba.client.commons.Key;
/**
* Determines how two connecting segments (of lines, arcs or curves) with non-zero lengths in a shape are joined together (degenerate segments with zero lengths, whose specified
* end points and control points are exactly at the same position, are skipped).
*
* @author Andrea "Stock" Stocchero
*/
public enum JoinStyle implements Key
{
/**
* Fills an additional triangular area between the common end point of connected segments, and the separate outside rectangular corners of each segment.
*/
BEVEL("bevel"),
/**
* Rounds off the corners of a shape by filling an additional sector of disc centered at the common end point of connected segments.
* The radius for these rounded corners is equal to the line width.
*/
ROUND("round"),
/**
* Connected segments are joined by extending their outside edges to connect at a single point, with the effect of filling an additional shaped area.
* This is the default.
*/
MITER("miter");
// name value of property
private final String value;
/**
* Creates with the property value to use in the native object.
*
* @param value value of property name
*/
private JoinStyle(String value) {
this.value = value;
}
/*
* (non-Javadoc)
*
* @see org.pepstock.charba.client.commons.Key#value()
*/
@Override
public String value() {
return value;
}
}