to top
Datalogic APIs
public static final enum

VisualFormatter.Item.Property.Type

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.datalogic.decode.VisualFormatter.Item.Property.Type

Class Overview

VisualFormatter.Item.Property.Type is an enumeration representing the type of property.

Summary

Enum Values
VisualFormatter.Item.Property.Type  BOOLEAN  Boolean. 
VisualFormatter.Item.Property.Type  NUMBER  Number, corresponding to the Double type for the property value. 
VisualFormatter.Item.Property.Type  STRING  String. 
Public Methods
static VisualFormatter.Item.Property.Type fromInt(int value)
Retrieves the corresponding property type value from a valid integer.
int toInt()
Converts the property type to its integer corresponding value.
static VisualFormatter.Item.Property.Type valueOf(String name)
final static Type[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final VisualFormatter.Item.Property.Type BOOLEAN

Added in revision 26

Boolean.

public static final VisualFormatter.Item.Property.Type NUMBER

Added in revision 26

Number, corresponding to the Double type for the property value.

public static final VisualFormatter.Item.Property.Type STRING

Added in revision 26

String.

Public Methods

public static VisualFormatter.Item.Property.Type fromInt (int value)

Added in revision 26

Retrieves the corresponding property type value from a valid integer.

Parameters
value Integer to use as input in the conversion.
Returns
  • The corresponding property type.

public int toInt ()

Added in revision 26

Converts the property type to its integer corresponding value.

Returns
  • Integer value of this property type.

public static VisualFormatter.Item.Property.Type valueOf (String name)

Added in revision 26

public static final Type[] values ()

Added in revision 26