All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.artipie.nuget.metadata.NuspecField Maven / Gradle / Ivy

There is a newer version: 1.5.5
Show newest version
/*
 * The MIT License (MIT) Copyright (c) 2020-2023 artipie.com
 * https://github.com/artipie/artipie/blob/master/LICENSE.txt
 */
package com.artipie.nuget.metadata;

/**
 * Nuspec xml metadata field.
 * @since 0.6
 */
public interface NuspecField {

    /**
     * Original raw value (as it was in xml).
     * @return String value
     */
    String raw();

    /**
     * Normalized value of the field.
     * @return Normalized value
     */
    String normalized();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy