Class Operator
- java.lang.Object
-
- com.tom_roush.pdfbox.contentstream.operator.Operator
-
public final class Operator extends Object
An Operator in a PDF content stream.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getImageData()This is the special case for the ID operator where there are just random bytes inlined the stream.COSDictionarygetImageParameters()This will get the image parameters, this is only valid for BI operators.StringgetName()This will get the name of the operator.static OperatorgetOperator(String operator)This is used to create/cache operators in the system.voidsetImageData(byte[] imageDataArray)This will set the image data, this is only used for the ID operator.voidsetImageParameters(COSDictionary params)This will set the image parameters, this is only valid for BI operators.StringtoString()This will print a string rep of this class.
-
-
-
Method Detail
-
getOperator
public static Operator getOperator(String operator)
This is used to create/cache operators in the system.- Parameters:
operator- The operator for the system.- Returns:
- The operator that matches the operator keyword.
-
getName
public String getName()
This will get the name of the operator.- Returns:
- The string representation of the operation.
-
toString
public String toString()
This will print a string rep of this class.
-
getImageData
public byte[] getImageData()
This is the special case for the ID operator where there are just random bytes inlined the stream.- Returns:
- Value of property imageData.
-
setImageData
public void setImageData(byte[] imageDataArray)
This will set the image data, this is only used for the ID operator.- Parameters:
imageDataArray- New value of property imageData.
-
getImageParameters
public COSDictionary getImageParameters()
This will get the image parameters, this is only valid for BI operators.- Returns:
- The image parameters.
-
setImageParameters
public void setImageParameters(COSDictionary params)
This will set the image parameters, this is only valid for BI operators.- Parameters:
params- The image parameters.
-
-