public class

ObjectConfigurationTypes

extends Object
java.lang.Object
   ↳ com.atlassian.configurable.ObjectConfigurationTypes

Class Overview

Contains a list of possible Object Configuration Types that can be used.

Summary

Constants
int CASCADINGSELECT
int CHECKBOX
int DATE
int FILTERPICKER
int FILTERPROJECTPICKER
int GROUP
int HIDDEN
int LONG
int MULTISELECT
int SELECT
int STRING
int TEXT
int TYPE_UNKNOWN
int USER
Public Constructors
ObjectConfigurationTypes()
Public Methods
static int getType(String typeStr)
Takes a string representation of a type and retrieves it statis identifier.
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final int CASCADINGSELECT

Constant Value: 10 (0x0000000a)

public static final int CHECKBOX

Constant Value: 9 (0x00000009)

public static final int DATE

Constant Value: 4 (0x00000004)

public static final int FILTERPICKER

Constant Value: 11 (0x0000000b)

public static final int FILTERPROJECTPICKER

Constant Value: 12 (0x0000000c)

public static final int GROUP

Constant Value: 6 (0x00000006)

public static final int HIDDEN

Constant Value: 3 (0x00000003)

public static final int LONG

Constant Value: 1 (0x00000001)

public static final int MULTISELECT

Constant Value: 8 (0x00000008)

public static final int SELECT

Constant Value: 2 (0x00000002)

public static final int STRING

Constant Value: 0 (0x00000000)

public static final int TEXT

Constant Value: 7 (0x00000007)

public static final int TYPE_UNKNOWN

Constant Value: -1 (0xffffffff)

public static final int USER

Constant Value: 5 (0x00000005)

Public Constructors

public ObjectConfigurationTypes ()

Public Methods

public static int getType (String typeStr)

Takes a string representation of a type and retrieves it statis identifier.

Parameters
typeStr Type in string format e.g. String
Returns
  • constant value for typeStr or -1 if unknown.