Option.Importance

public static final enum Option.Importance
extends Enum<Option.Importance>

java.lang.Object
   ↳ java.lang.Enum<com.android.tradefed.config.Option.Importance>
     ↳ com.android.tradefed.config.Option.Importance


Summary

Enum values

Option.Importance  ALWAYS

the option should always be treated as important 

Option.Importance  IF_UNSET

the option should be treated as important only if it has no value 

Option.Importance  NEVER

the option should never be treated as important 

Public methods

static Option.Importance valueOf(String name)
static final Importance[] values()

Enum values

ALWAYS

public static final Option.Importance ALWAYS

the option should always be treated as important

IF_UNSET

public static final Option.Importance IF_UNSET

the option should be treated as important only if it has no value

NEVER

public static final Option.Importance NEVER

the option should never be treated as important

Public methods

valueOf

public static Option.Importance valueOf (String name)

Parameters
name String

Returns
Option.Importance

values

public static final Importance[] values ()

Returns
Importance[]