public static enum QuerySupport.Kind extends Enum<QuerySupport.Kind>
QuerySupport.query(java.lang.String, java.lang.String, org.netbeans.modules.parsing.spi.indexing.support.QuerySupport.Kind, java.lang.String...)
.Enum Constant and Description |
---|
CAMEL_CASE
The name parameter is
an camel case of the declared type name.
|
CASE_INSENSITIVE_CAMEL_CASE |
CASE_INSENSITIVE_PREFIX
The name parameter is
an case insensitive prefix of the declared type name.
|
CASE_INSENSITIVE_REGEXP
The name parameter is
an case insensitive regular expression of the declared type name.
|
EXACT
The name parameter
is an exact simple name of the package or declared type.
|
PREFIX
The name parameter
is an case sensitive prefix of the package or declared type name.
|
REGEXP
The name parameter is
an regular expression of the declared type name.
|
Modifier and Type | Method and Description |
---|---|
static QuerySupport.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuerySupport.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuerySupport.Kind EXACT
public static final QuerySupport.Kind PREFIX
public static final QuerySupport.Kind CASE_INSENSITIVE_PREFIX
public static final QuerySupport.Kind CAMEL_CASE
public static final QuerySupport.Kind REGEXP
public static final QuerySupport.Kind CASE_INSENSITIVE_REGEXP
public static final QuerySupport.Kind CASE_INSENSITIVE_CAMEL_CASE
public static QuerySupport.Kind[] values()
for (QuerySupport.Kind c : QuerySupport.Kind.values()) System.out.println(c);
public static QuerySupport.Kind valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullBuilt on June 4 2024. | Copyright © 2017-2024 Apache Software Foundation. All Rights Reserved.