com.senzing.cmdline.CommandLineSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of senzing-commons Show documentation
Show all versions of senzing-commons Show documentation
Utility classes and functions common to multiple Senzing projects.
The newest version!
package com.senzing.cmdline;
/**
* Describes the source of a {@link CommandLineValue}.
*/
public enum CommandLineSource {
/**
* The value comes from the default value associated with the option.
*/
DEFAULT,
/**
* The value comes from an environment variable.
*/
ENVIRONMENT,
/**
* The value comes from a command-line flag.
*/
COMMAND_LINE;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy