- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 212 for NonNull (0.05 seconds)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainManager.java
* @return List of matching toolchains, never null * @throws ToolchainManagerException if toolchain retrieval fails */ @Nonnull default List<Toolchain> getToolchains(@Nonnull Session session, @Nonnull String type) throws ToolchainManagerException { return getToolchains(session, type, null); } /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 11 12:33:57 GMT 2025 - 3.5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManagerFactory.java
@Nonnull @Override public List<org.apache.maven.api.Toolchain> getToolchains( @Nonnull Session session, @Nonnull String type, @Nullable Map<String, String> requirements) throws ToolchainManagerException { return getDelegate().getToolchains(session, type, requirements); } @Nonnull @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 31 10:58:52 GMT 2025 - 11K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Event.java
/** * Gets the type of the event. * * @return the type of the event, never {@code null} */ @Nonnull EventType getType(); /** * Gets the session from which this event originates. * * @return the current session, never {@code null} */ @Nonnull Session getSession(); /** * Gets the current project (if any). *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Mar 23 05:29:39 GMT 2023 - 2.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilder.java
* @throws IllegalArgumentException if an argument is {@code null} or invalid * @see #build(ToolchainsBuilderRequest) */ @Nonnull default ToolchainsBuilderResult build( @Nonnull Session session, @Nonnull Source installationToolchainsFile, @Nonnull Source userToolchainsSource) { return build(ToolchainsBuilderRequest.build(session, installationToolchainsFile, userToolchainsSource)); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Aug 22 14:47:43 GMT 2024 - 2.5K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java
return read(reader, true); } @Nonnull default T read(@Nonnull Reader reader, boolean strict) throws XmlReaderException { return read(XmlReaderRequest.builder().reader(reader).strict(strict).build()); } @Nonnull T read(@Nonnull XmlReaderRequest request) throws XmlReaderException; default void write(@Nonnull T content, @Nonnull Path path) throws XmlWriterException {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 3.9K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolver.java
* @param artifactCoordinates t * @return the version range resolution result * @throws VersionResolverException if an errors occurs */ @Nonnull default VersionRangeResolverResult resolve( @Nonnull Session session, @Nonnull ArtifactCoordinates artifactCoordinates) throws VersionResolverException { return resolve(VersionRangeResolverRequest.build(session, artifactCoordinates)); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Sep 12 06:19:14 GMT 2024 - 3.7K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactoryRequest.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 9.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
@Experimental public interface Project { /** * {@return the project groupId}. */ @Nonnull String getGroupId(); /** * {@return the project artifactId}. */ @Nonnull String getArtifactId(); /** * {@return the project version}. */ @Nonnull String getVersion(); /** * {@return the project packaging}. * <p>Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Nov 07 13:11:07 GMT 2025 - 15.3K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
String getScope(); boolean isOptional(); @Nonnull Collection<Exclusion> getExclusions(); @Nonnull static DependencyCoordinatesFactoryRequest build( @Nonnull Session session, String groupId, String artifactId, String version, String classifier,Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 12.1K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CliUtils.java
str = str.substring(1, length - 1); } return str; } @Nonnull public static Path getCanonicalPath(Path path) { requireNonNull(path, "path"); return path.toAbsolutePath().normalize(); } @Nonnull public static Map<String, String> toMap(Properties properties) { requireNonNull(properties, "properties");
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 13 18:30:29 GMT 2025 - 5K bytes - Click Count (0)