Package net.webpdf.wsclient.openapi
Class OperationBorder
- java.lang.Object
-
- net.webpdf.wsclient.openapi.OperationBorder
-
public class OperationBorder extends Object
Defines a border for a rendered geometrical element.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOperationBorder.BorderStyleEnumDefines the border style
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_BORDER_STYLEstatic StringJSON_PROPERTY_BORDER_WIDTHstatic StringJSON_PROPERTY_DASH_LENGTHstatic StringJSON_PROPERTY_GAP_LENGTH
-
Constructor Summary
Constructors Constructor Description OperationBorder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OperationBorderborderStyle(OperationBorder.BorderStyleEnum borderStyle)OperationBorderborderWidth(Integer borderWidth)OperationBorderdashLength(Integer dashLength)booleanequals(Object o)OperationBordergapLength(Integer gapLength)@Nullable OperationBorder.BorderStyleEnumgetBorderStyle()Defines the border style@Nullable IntegergetBorderWidth()Defines the border width/strength/thickness.@Nullable IntegergetDashLength()The interval length of dashes for a border with a \"dashed\" style.@Nullable IntegergetGapLength()The interval length of gaps for a border with a \"dashed\" style.inthashCode()voidsetBorderStyle(OperationBorder.BorderStyleEnum borderStyle)voidsetBorderWidth(Integer borderWidth)voidsetDashLength(Integer dashLength)voidsetGapLength(Integer gapLength)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_BORDER_STYLE
public static final String JSON_PROPERTY_BORDER_STYLE
- See Also:
- Constant Field Values
-
JSON_PROPERTY_BORDER_WIDTH
public static final String JSON_PROPERTY_BORDER_WIDTH
- See Also:
- Constant Field Values
-
JSON_PROPERTY_DASH_LENGTH
public static final String JSON_PROPERTY_DASH_LENGTH
- See Also:
- Constant Field Values
-
JSON_PROPERTY_GAP_LENGTH
public static final String JSON_PROPERTY_GAP_LENGTH
- See Also:
- Constant Field Values
-
-
Method Detail
-
borderStyle
public OperationBorder borderStyle(OperationBorder.BorderStyleEnum borderStyle)
-
getBorderStyle
@Nullable public @Nullable OperationBorder.BorderStyleEnum getBorderStyle()
Defines the border style. * solid = A solid line border. * dashed = A dashed border using the given dash and gap length.- Returns:
- borderStyle
-
setBorderStyle
public void setBorderStyle(OperationBorder.BorderStyleEnum borderStyle)
-
borderWidth
public OperationBorder borderWidth(Integer borderWidth)
-
getBorderWidth
@Nullable public @Nullable Integer getBorderWidth()
Defines the border width/strength/thickness. minimum: 0- Returns:
- borderWidth
-
setBorderWidth
public void setBorderWidth(Integer borderWidth)
-
dashLength
public OperationBorder dashLength(Integer dashLength)
-
getDashLength
@Nullable public @Nullable Integer getDashLength()
The interval length of dashes for a border with a \"dashed\" style. minimum: 1- Returns:
- dashLength
-
setDashLength
public void setDashLength(Integer dashLength)
-
gapLength
public OperationBorder gapLength(Integer gapLength)
-
getGapLength
@Nullable public @Nullable Integer getGapLength()
The interval length of gaps for a border with a \"dashed\" style. minimum: 1- Returns:
- gapLength
-
setGapLength
public void setGapLength(Integer gapLength)
-
-