public final enum

InsightDataType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.bitbucket.codeinsights.report.InsightDataType

Summary

Enum Values
InsightDataType  BOOLEAN  Indicates that the data represents a boolean value  
InsightDataType  DATE  Indicates that the data is a number which represents a date in seconds since Unix epoch  
InsightDataType  DURATION  Indicates that the data is a number which represents a positive duration in milliseconds  
InsightDataType  LINK  Indicates that the data represents an HTTP(S) URL. 
InsightDataType  NUMBER  Indicates that the data is a number  
InsightDataType  PERCENTAGE  Indicates that the data is number which represents a percentage (e.g. 
InsightDataType  TEXT  Indicates that the data is plain text  
Public Methods
static InsightDataType valueOf(String name)
final static InsightDataType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final InsightDataType BOOLEAN

Indicates that the data represents a boolean value

public static final InsightDataType DATE

Indicates that the data is a number which represents a date in seconds since Unix epoch

public static final InsightDataType DURATION

Indicates that the data is a number which represents a positive duration in milliseconds

public static final InsightDataType LINK

Indicates that the data represents an HTTP(S) URL.

public static final InsightDataType NUMBER

Indicates that the data is a number

public static final InsightDataType PERCENTAGE

Indicates that the data is number which represents a percentage (e.g. 42.5 represents 42.5%)

public static final InsightDataType TEXT

Indicates that the data is plain text

Public Methods

public static InsightDataType valueOf (String name)

public static final InsightDataType[] values ()