Class Style
- java.lang.Object
-
- com.microsoft.azure.cognitiveservices.vision.computervision.models.Style
-
public class Style extends Object
An object representing the style of the text line.
-
-
Constructor Summary
Constructors Constructor Description Style()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
confidence()
Get the confidence value.TextStyle
name()
Get the name value.Style
withConfidence(double confidence)
Set the confidence value.Style
withName(TextStyle name)
Set the name value.
-
-
-
Method Detail
-
name
public TextStyle name()
Get the name value.- Returns:
- the name value
-
withName
public Style withName(TextStyle name)
Set the name value.- Parameters:
name
- the name value to set- Returns:
- the Style object itself.
-
confidence
public double confidence()
Get the confidence value.- Returns:
- the confidence value
-
withConfidence
public Style withConfidence(double confidence)
Set the confidence value.- Parameters:
confidence
- the confidence value to set- Returns:
- the Style object itself.
-
-