Package com.avpkit.core
Enum IProperty.Search
- java.lang.Object
-
- java.lang.Enum<IProperty.Search>
-
- com.avpkit.core.IProperty.Search
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IProperty.Search>
- Enclosing class:
- IProperty
public static enum IProperty.Search extends java.lang.Enum<IProperty.Search>
How to search options when looking for different values.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PROPERTY_SEARCH_CHILDRENSearch children firstPROPERTY_SEARCH_DEFAULTDo not search child options
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IProperty.SearchswigToEnum(int swigValue)intswigValue()static IProperty.SearchvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IProperty.Search[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPERTY_SEARCH_DEFAULT
public static final IProperty.Search PROPERTY_SEARCH_DEFAULT
Do not search child options
-
PROPERTY_SEARCH_CHILDREN
public static final IProperty.Search PROPERTY_SEARCH_CHILDREN
Search children first
-
-
Method Detail
-
values
public static IProperty.Search[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IProperty.Search c : IProperty.Search.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IProperty.Search valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
swigValue
public final int swigValue()
-
swigToEnum
public static IProperty.Search swigToEnum(int swigValue)
-
-