LineJoint.java
418 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.internal.pdftoolkit.graphicsDOM;
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
public enum LineJoint {
ROUND(1),
BEVEL(2),
MITER(0);
private int value;
private LineJoint(int value) {
this.value = value;
}
public int getValue() {
return this.value;
}
}