Uses of Interface
java.util.Enumeration
-
Packages that use Enumeration 软件包 描述 java.applet 提供创建applet所需的类以及applet用于与其applet上下文进行通信的类。java.awt 包含用于创建用户界面和绘制图形和图像的所有类。java.beans 包含与开发 bean相关的类 - 基于JavaBeans架构的组件。java.io 通过数据流,序列化和文件系统提供系统输入和输出。java.lang 提供对Java编程语言设计至关重要的类。java.net 提供实现网络应用程序的类。java.security 提供安全框架的类和接口。java.security.acl 此包中的类和接口已被弃用。java.sql 提供使用Java编程语言访问和处理存储在数据源(通常是关系数据库)中的数据的API。java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.concurrent 实用程序类通常用于并发编程。java.util.jar 提供用于读取和写入JAR(Java ARchive)文件格式的类,该文件格式基于具有可选清单文件的标准ZIP文件格式。java.util.logging 提供Java¢2平台核心日志记录工具的类和接口。java.util.zip 提供读写标准ZIP和GZIP文件格式的类。javax.activation javax.management.loading 提供实现高级动态加载的类。javax.naming 提供用于访问命名服务的类和接口。javax.naming.ldap 提供对LDAPv3扩展操作和控件的支持。javax.net.ssl 为安全套接字包提供类。javax.security.sasl 包含用于支持SASL的类和接口。javax.sql.rowset.spi 第三方供应商在实施同步提供程序时必须使用的标准类和接口。javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。javax.swing.table 提供处理javax.swing.JTable类和接口。javax.swing.text 提供处理可编辑和不可编辑文本组件的类和接口。javax.swing.text.html 提供类HTMLEditorKit和辅助类创建HTML文本编辑器。javax.swing.text.html.parser 提供默认的HTML解析器以及支持类。javax.swing.tree 提供处理javax.swing.JTree类和接口。org.xml.sax.helpers 提供帮助类,包括支持引导基于SAX的应用程序。 -
-
Uses of Enumeration in java.applet
Methods in java.applet that return Enumeration Modifier and Type 方法 描述 Enumeration<Applet>AppletContext. getApplets()已过时。查找由该applet上下文表示的文档中的所有applet。 -
Uses of Enumeration in java.awt
Methods in java.awt that return Enumeration Modifier and Type 方法 描述 Enumeration<MenuShortcut>MenuBar. shortcuts()获取此菜单栏正在管理的所有菜单快捷方式的枚举。 -
Uses of Enumeration in java.beans
Methods in java.beans that return Enumeration Modifier and Type 方法 描述 Enumeration<String>FeatureDescriptor. attributeNames()获取此功能的与区域设置无关的名称的枚举。 -
Uses of Enumeration in java.io
Constructors in java.io with parameters of type Enumeration Constructor 描述 SequenceInputStream(Enumeration<? extends InputStream> e)通过记住参数,初始化一个新创建的SequenceInputStream,该参数必须是Enumeration生成运行时类型为InputStream。 -
Uses of Enumeration in java.lang
Methods in java.lang that return Enumeration Modifier and Type 方法 描述 protected Enumeration<URL>ClassLoader. findResources(String name)返回表示具有给定名称的所有资源的URL对象的枚举。Enumeration<URL>ClassLoader. getResources(String name)查找具有给定名称的所有资源。static Enumeration<URL>ClassLoader. getSystemResources(String name)从用于加载类的搜索路径中查找指定名称的所有资源。 -
Uses of Enumeration in java.net
Methods in java.net that return Enumeration Modifier and Type 方法 描述 Enumeration<URL>URLClassLoader. findResources(String name)返回表示URL搜索路径上具有指定名称的所有资源的URL的枚举。Enumeration<InetAddress>NetworkInterface. getInetAddresses()获取绑定到此网络接口的所有或一部分InetAddress的枚举。static Enumeration<NetworkInterface>NetworkInterface. getNetworkInterfaces()返回本机上所有接口的Enumeration。Enumeration<NetworkInterface>NetworkInterface. getSubInterfaces()获取连接到此网络接口的所有子接口(也称为虚拟接口)的枚举。 -
Uses of Enumeration in java.security
Methods in java.security that return Enumeration Modifier and Type 方法 描述 Enumeration<String>KeyStore. aliases()列出此密钥库的所有别名。abstract Enumeration<Permission>PermissionCollection. elements()返回集合中所有Permission对象的枚举。Enumeration<Permission>Permissions. elements()返回此Permissions对象中所有PermissionCollections中所有Permission对象的枚举。Enumeration<Object>Provider. elements()abstract Enumeration<String>KeyStoreSpi. engineAliases()列出此密钥库的所有别名。abstract Enumeration<Identity>IdentityScope. identities()已过时。返回此身份范围内所有身份的枚举。Enumeration<Object>Provider. keys() -
Uses of Enumeration in java.security.acl
Methods in java.security.acl that return Enumeration Modifier and Type 方法 描述 Enumeration<AclEntry>Acl. entries()已过时。返回此ACL中条目的枚举。Enumeration<Permission>Acl. getPermissions(Principal user)已过时。返回指定主体的一组允许权限的枚举(表示一个实体,如个人或组)。Enumeration<? extends Principal>Group. members()已过时。返回组中成员的枚举。Enumeration<Permission>AclEntry. permissions()已过时。返回此ACL条目中权限的枚举。 -
Uses of Enumeration in java.sql
Methods in java.sql that return Enumeration Modifier and Type 方法 描述 static Enumeration<Driver>DriverManager. getDrivers()使用当前调用者可以访问的所有当前加载的JDBC驱动程序检索枚举。 -
Uses of Enumeration in java.util
Classes in java.util that implement Enumeration Modifier and Type Class 描述 classStringTokenizer字符串tokenizer类允许应用程序将字符串拆分成令牌。Methods in java.util that return Enumeration Modifier and Type 方法 描述 abstract Enumeration<V>Dictionary. elements()返回此字典中值的枚举。Enumeration<V>Hashtable. elements()返回此散列表中值的枚举。Enumeration<Object>Properties. elements()Enumeration<E>Vector. elements()返回此向量的组件的枚举。static <T> Enumeration<T>Collections. emptyEnumeration()返回没有元素的枚举。static <T> Enumeration<T>Collections. enumeration(Collection<T> c)返回指定集合的枚举。Enumeration<String>ListResourceBundle. getKeys()返回一个Enumeration包含在此按键ResourceBundle及其父包。Enumeration<String>PropertyResourceBundle. getKeys()返回一个Enumeration包含在此按键ResourceBundle及其父包。abstract Enumeration<String>ResourceBundle. getKeys()返回键的枚举。abstract Enumeration<K>Dictionary. keys()返回此字典中键的枚举。Enumeration<K>Hashtable. keys()返回此散列表中键的枚举。Enumeration<Object>Properties. keys()Enumeration<?>Properties. propertyNames()返回此属性列表中所有键的枚举,包括默认属性列表中的不同键,如果尚未从主属性列表中找到相同名称的键。Methods in java.util with parameters of type Enumeration Modifier and Type 方法 描述 static <T> ArrayList<T>Collections. list(Enumeration<T> e)返回一个数组列表,其中包含由枚举返回的顺序由指定的枚举返回的元素。 -
Uses of Enumeration in java.util.concurrent
Methods in java.util.concurrent that return Enumeration Modifier and Type 方法 描述 Enumeration<V>ConcurrentHashMap. elements()返回此表中值的枚举。Enumeration<K>ConcurrentHashMap. keys()返回此表中键的枚举。 -
Uses of Enumeration in java.util.jar
Methods in java.util.jar that return Enumeration Modifier and Type 方法 描述 Enumeration<JarEntry>JarFile. entries()返回枚举jar文件条目。 -
Uses of Enumeration in java.util.logging
Methods in java.util.logging that return Enumeration Modifier and Type 方法 描述 Enumeration<String>LogManager. getLoggerNames()获取已知记录器名称的枚举。 -
Uses of Enumeration in java.util.zip
Methods in java.util.zip that return Enumeration Modifier and Type 方法 描述 Enumeration<? extends ZipEntry>ZipFile. entries()返回ZIP文件条目的枚举。 -
Uses of Enumeration in javax.activation
Methods in javax.activation that return Enumeration Modifier and Type 方法 描述 EnumerationMimeTypeParameterList. getNames()检索此列表中所有名称的枚举。 -
Uses of Enumeration in javax.management.loading
Methods in javax.management.loading that return Enumeration Modifier and Type 方法 描述 Enumeration<URL>MLetMBean. getResources(String name)查找具有给定名称的所有资源。 -
Uses of Enumeration in javax.naming
Subinterfaces of Enumeration in javax.naming Modifier and Type 接口 描述 interfaceNamingEnumeration<T>此接口用于枚举javax.naming和javax.naming.directory包中的方法返回的列表。Methods in javax.naming that return Enumeration Modifier and Type 方法 描述 Enumeration<String>CompositeName. getAll()检索此复合名称的组件作为字符串的枚举。Enumeration<String>CompoundName. getAll()检索此复合名称的组件作为字符串的枚举。Enumeration<String>Name. getAll()检索此名称的组件作为字符串的枚举。Enumeration<RefAddr>Reference. getAll()检索本参考文献中地址的列举。Constructors in javax.naming with parameters of type Enumeration Constructor 描述 CompositeName(Enumeration<String> comps)使用“comps”指定的组件构造新的组合名称实例。CompoundName(Enumeration<String> comps, Properties syntax)使用comps和syntax中指定的组件构造一个新的复合名称实例。 -
Uses of Enumeration in javax.naming.ldap
Methods in javax.naming.ldap that return Enumeration Modifier and Type 方法 描述 Enumeration<String>LdapName. getAll()检索此名称的组件作为字符串的枚举。 -
Uses of Enumeration in javax.net.ssl
Methods in javax.net.ssl that return Enumeration Modifier and Type 方法 描述 Enumeration<byte[]>SSLSessionContext. getIds()返回所有会话ID的枚举,分组在此SSLSessionContext。 -
Uses of Enumeration in javax.security.sasl
Methods in javax.security.sasl that return Enumeration Modifier and Type 方法 描述 static Enumeration<SaslClientFactory>Sasl. getSaslClientFactories()获得已知工厂的列表,生产SaslClient。static Enumeration<SaslServerFactory>Sasl. getSaslServerFactories()获得已知工厂的计数,生产SaslServer。 -
Uses of Enumeration in javax.sql.rowset.spi
Methods in javax.sql.rowset.spi that return Enumeration Modifier and Type 方法 描述 static Enumeration<SyncProvider>SyncFactory. getRegisteredProviders()返回当前注册的同步提供程序的枚举。 -
Uses of Enumeration in javax.swing
Methods in javax.swing that return Enumeration Modifier and Type 方法 描述 Enumeration<TreeNode>JTree.DynamicUtilTreeNode. children()子类加载孩子,如有必要。Enumeration<E>DefaultListModel. elements()返回此列表的组件的枚举。protected Enumeration<TreePath>JTree. getDescendantToggledPaths(TreePath parent)返回一个Enumeration的TreePaths已展开是后裔parent。Enumeration<AbstractButton>ButtonGroup. getElements()返回参与此组的所有按钮。Enumeration<TreePath>JTree. getExpandedDescendants(TreePath parent)返回一个Enumeration路径的后裔parent当前展开。Methods in javax.swing with parameters of type Enumeration Modifier and Type 方法 描述 protected voidJTree. removeDescendantToggledPaths(Enumeration<TreePath> toRemove)删除已扩展的TreePaths中的toRemove任何后代。 -
Uses of Enumeration in javax.swing.table
Methods in javax.swing.table that return Enumeration Modifier and Type 方法 描述 Enumeration<TableColumn>DefaultTableColumnModel. getColumns()返回Enumeration中所有列的Enumeration。Enumeration<TableColumn>TableColumnModel. getColumns()返回Enumeration中所有列的Enumeration。 -
Uses of Enumeration in javax.swing.text
Methods in javax.swing.text that return Enumeration Modifier and Type 方法 描述 abstract Enumeration<TreeNode>AbstractDocument.AbstractElement. children()以Enumeration返回接收者的Enumeration。Enumeration<TreeNode>AbstractDocument.BranchElement. children()以Enumeration返回接收者的Enumeration。Enumeration<TreeNode>AbstractDocument.LeafElement. children()以Enumeration返回接收者的Enumeration。Enumeration<?>AbstractDocument.AbstractElement. getAttributeNames()获取所有属性的名称。Enumeration<?>AttributeSet. getAttributeNames()返回在集合中本地定义的属性的名称的枚举。Enumeration<?>SimpleAttributeSet. getAttributeNames()获取集合中属性的名称。Enumeration<?>StyleContext.NamedStyle. getAttributeNames()获取所有属性的名称。Enumeration<?>StyleContext.SmallAttributeSet. getAttributeNames()获取所有属性的名称。Enumeration<?>DefaultStyledDocument. getStyleNames()获取样式名称列表。Enumeration<?>StyleContext. getStyleNames()获取定义的样式的名称。Methods in javax.swing.text with parameters of type Enumeration Modifier and Type 方法 描述 voidAbstractDocument.AbstractElement. removeAttributes(Enumeration<?> names)删除元素的一组属性。AttributeSetAbstractDocument.AttributeContext. removeAttributes(AttributeSet old, Enumeration<?> names)删除元素的一组属性。voidMutableAttributeSet. removeAttributes(Enumeration<?> names)删除给定的属性集names。voidSimpleAttributeSet. removeAttributes(Enumeration<?> names)从列表中删除一组属性。voidStyleContext.NamedStyle. removeAttributes(Enumeration<?> names)删除元素的一组属性。AttributeSetStyleContext. removeAttributes(AttributeSet old, Enumeration<?> names)删除元素的一组属性。 -
Uses of Enumeration in javax.swing.text.html
Methods in javax.swing.text.html with parameters of type Enumeration Modifier and Type 方法 描述 AttributeSetStyleSheet. removeAttributes(AttributeSet old, Enumeration<?> names)删除元素的一组属性。 -
Uses of Enumeration in javax.swing.text.html.parser
Methods in javax.swing.text.html.parser that return Enumeration Modifier and Type 方法 描述 Enumeration<?>AttributeList. getValues() -
Uses of Enumeration in javax.swing.tree
Fields in javax.swing.tree declared as Enumeration Modifier and Type Field 描述 static Enumeration<TreeNode>DefaultMutableTreeNode. EMPTY_ENUMERATION一个总是空的枚举。Methods in javax.swing.tree that return Enumeration Modifier and Type 方法 描述 Enumeration<TreeNode>DefaultMutableTreeNode. breadthFirstEnumeration()创建并返回以宽度优先顺序遍历以此节点为根的子树的枚举。Enumeration<TreeNode>DefaultMutableTreeNode. children()创建并返回该节点的子节点的前向枚举。Enumeration<? extends TreeNode>TreeNode. children()以Enumeration返回接收者的Enumeration。Enumeration<TreeNode>DefaultMutableTreeNode. depthFirstEnumeration()创建并返回以深度优先顺序遍历以此节点为根的子树的枚举。abstract Enumeration<TreePath>AbstractLayoutCache. getVisiblePathsFrom(TreePath path)返回一个Enumerator,从传入的位置开始可见的路径递增。Enumeration<TreePath>FixedHeightLayoutCache. getVisiblePathsFrom(TreePath path)返回一个枚举器,它从传入的位置开始,以可见路径递增。Enumeration<TreePath>VariableHeightLayoutCache. getVisiblePathsFrom(TreePath path)返回一个Enumerator,从传入的位置开始可见的路径递增。Enumeration<TreeNode>DefaultMutableTreeNode. pathFromAncestorEnumeration(TreeNode ancestor)创建并返回从ancestor到此节点的路径ancestor的枚举。Enumeration<TreeNode>DefaultMutableTreeNode. postorderEnumeration()创建并返回在postorder中遍历此节点的子树的枚举。Enumeration<TreeNode>DefaultMutableTreeNode. preorderEnumeration()创建并返回以预订方式遍历此节点的子树的枚举。 -
Uses of Enumeration in org.xml.sax.helpers
Methods in org.xml.sax.helpers that return Enumeration Modifier and Type 方法 描述 EnumerationNamespaceSupport. getDeclaredPrefixes()返回在此上下文中声明的所有前缀的枚举。EnumerationNamespaceSupport. getPrefixes()返回其声明在当前上下文中处于活动状态的所有前缀的枚举。EnumerationNamespaceSupport. getPrefixes(String uri)返回给定URI的所有前缀的枚举,其声明在当前上下文中处于活动状态。
-