Package io.scanbot.sdk.image
Class ImageRefProfile
- java.lang.Object
-
- io.scanbot.sdk.image.ImageRefProfile
-
public class ImageRefProfile extends java.lang.ObjectImageRef profile which provides detailed information about stored object.
-
-
Constructor Summary
Constructors Constructor Description ImageRefProfile(RefCountedObjectProfile refInfo, ImageProfile imageInfo, ImageSource imageSource)Constructs ImageRefProfile with the given params.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImageProfilegetImageInfo()Getter for imageInfo field.ImageSourcegetImageSource()Getter for imageSource field.RefCountedObjectProfilegetRefInfo()Getter for refInfo field.voidsetImageInfo(ImageProfile imageInfo)Setter for imageInfo field.voidsetImageSource(ImageSource imageSource)Setter for imageSource field.voidsetRefInfo(RefCountedObjectProfile refInfo)Setter for refInfo field.
-
-
-
Constructor Detail
-
ImageRefProfile
public ImageRefProfile(RefCountedObjectProfile refInfo, ImageProfile imageInfo, ImageSource imageSource)
Constructs ImageRefProfile with the given params.- Parameters:
refInfo- Information about the strong and serialized references to the image.imageInfo- Image-specific information, e.g. memory consumption.imageSource- Description of source from which the ImageRef was created. Non-null only if detailed profiling has been previously enabled by a call to enableDetailedProfiling.
-
-
Method Detail
-
getRefInfo
public RefCountedObjectProfile getRefInfo()
Getter for refInfo field. See constructor documentation for more information about the field.- Returns:
- refInfo
-
setRefInfo
public void setRefInfo(RefCountedObjectProfile refInfo)
Setter for refInfo field. See constructor documentation for more information about the field.- Parameters:
refInfo- Value to set.
-
getImageInfo
public ImageProfile getImageInfo()
Getter for imageInfo field. See constructor documentation for more information about the field.- Returns:
- imageInfo
-
setImageInfo
public void setImageInfo(ImageProfile imageInfo)
Setter for imageInfo field. See constructor documentation for more information about the field.- Parameters:
imageInfo- Value to set.
-
getImageSource
public ImageSource getImageSource()
Getter for imageSource field. See constructor documentation for more information about the field.- Returns:
- imageSource
-
setImageSource
public void setImageSource(ImageSource imageSource)
Setter for imageSource field. See constructor documentation for more information about the field.- Parameters:
imageSource- Value to set.
-
-