- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for TraversalUtil (0.05 sec)
-
src/main/java/org/codelibs/core/io/TraversalUtil.java
* @see ResourceTraversalUtil */ public abstract class TraversalUtil { /** * Do not instantiate. */ protected TraversalUtil() { } /** An empty array of {@link Traverser}. */ protected static final Traverser[] EMPTY_ARRAY = new Traverser[0]; private static final Logger logger = Logger.getLogger(TraversalUtil.class);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/Traverser.java
* governing permissions and limitations under the License. */ package org.codelibs.core.io; /** * Object representing a collection of classes or resources. * * @author koichik * @see TraversalUtil */ public interface Traverser { /** * Returns <code>true</code> if the class file corresponding to the specified class name exists in the resources handled by this instance. * <p>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
import org.codelibs.core.jar.JarFileUtil; import org.codelibs.core.zip.ZipInputStreamUtil; /** * Class for traversing resources. * * @author taedium * @see ResourceHandler * @see TraversalUtil */ public abstract class ResourceTraversalUtil { /** * Do not instantiate. */ protected ResourceTraversalUtil() { } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
import org.codelibs.core.lang.ClassUtil; import org.codelibs.core.zip.ZipInputStreamUtil; /** * Handler for traversing and processing classes. * * @author koichik * @see ClassHandler * @see TraversalUtil */ public abstract class ClassTraversalUtil { /** * Do not instantiate. */ protected ClassTraversalUtil() { } /** The file extension for class files. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.5K bytes - Viewed (0)