Example usage for com.lowagie.text.pdf PdfContentByte LINE_JOIN_BEVEL

List of usage examples for com.lowagie.text.pdf PdfContentByte LINE_JOIN_BEVEL

Introduction

In this page you can find the example usage for com.lowagie.text.pdf PdfContentByte LINE_JOIN_BEVEL.

Prototype

int LINE_JOIN_BEVEL

To view the source code for com.lowagie.text.pdf PdfContentByte LINE_JOIN_BEVEL.

Click Source Link

Document

A possible line join value

Usage

From source file:org.oss.pdfreporter.pdf.Page.java

License:Open Source License

private int translateLineJoin(LineJoin lineJoin) {
    switch (lineJoin) {
    case BEVEL_JOIN:
        return PdfContentByte.LINE_JOIN_BEVEL;
    case MITER_JOIN:
        return PdfContentByte.LINE_JOIN_MITER;
    case ROUND_JOIN:
        return PdfContentByte.LINE_JOIN_ROUND;
    }//from w ww  .  jav a  2 s . co m
    throw new NotImplementedException("LineJoin: " + lineJoin + " is unknown.");
}