Eclipse 资源、类型搜索中驼峰大小写的用途是什么

What is use of camel case in Eclipse Resource, Type Search

除了 wildcards,- *?,我什至可以选择 camel case,这有点令人困惑,因为当我搜索某种模式时,- 我在深入研究包和搜索时遇到了混合情况,而且结果没有达到预期。

如何在有或没有通配符的情况下有效地使用 camel case,特别是在某些特定包中进行搜索。 Eclipse 中的 camel case 是什么,- Type & Resource,- 搜索。

我用过的搜索词,-

com.sun.*pda

结果,-

学期,

PD

结果是,

Open Type 的帮助说:

The following pattern kinds are supported:

Wildcards:

  • "*" for any string and "?" for any character
  • terminating "<" or " " (space) to prevent the automatic prefix matching, e.g. "java.*Access<" to match java.util.RandomAccess but not java.security.AccessControlContext

Camel case:

  • "TZ" for types containing "T" and "Z" as upper-case letters in camel-case notation, e.g. java.util.TimeZone

  • "NuPoEx" or "NuPo" for types containing "Nu", "Po", (and "Ex") as parts in camel-case notation, e.g. java.lang.NullPointerException

  • terminating "<" or " " (space) to fix the number of camel-case parts, e.g. "HMap<" and "HaMap<" match "HashMap" and "HatMapper", but not "HashMapEntry" nor "Hashmap".