Uses of Class
liquibase.command.CommandArgumentDefinition.Building
Packages that use CommandArgumentDefinition.Building
-
Uses of CommandArgumentDefinition.Building in liquibase.command
Methods in liquibase.command that return CommandArgumentDefinition.BuildingModifier and TypeMethodDescriptionAdds an alias for this command argument; an alias added this way is not shown in the help output.<DataType> CommandArgumentDefinition.Building<DataType>CommandBuilder.addArgument(CommandArgumentDefinition<DataType> example) Uses an existingCommandArgumentDefinitionas templateCommandArgumentDefinition.Building.addForcePrintAlias(String alias) Adds an alias for this command argument that will be printed to the help output inline with the existing parameter (for which this is an alias).<DataType> CommandArgumentDefinition.Building<DataType>Starts the building of a newCommandArgumentDefinition.<DataType> CommandArgumentDefinition.Building<DataType>CommandBuilder.argument(CommonArgumentNames argument, Class<DataType> type) Starts the building of a newCommandArgumentDefinition.CommandArgumentDefinition.Building.defaultValue(DataType defaultValue) Convenience version ofdefaultValue(Object, String)but usingString.valueOf(Object)for the description.CommandArgumentDefinition.Building.defaultValue(DataType defaultValue, String description) Set the default value for this argument as well as the description of the default value.CommandArgumentDefinition.Building.description(String description) Add a descriptionCommandArgumentDefinition.Building.hidden()Mark argument as hidden.CommandArgumentDefinition.Building.optional()Mark argument as optional.CommandArgumentDefinition.Building.required()Mark argument as required.CommandArgumentDefinition.Building.setValueHandler(ConfigurationValueConverter<DataType> valueHandler) Set the#getValueConverter()to use.CommandArgumentDefinition.Building.setValueObfuscator(ConfigurationValueObfuscator<DataType> valueObfuscator) Set the#getValueObfuscator()to use.CommandArgumentDefinition.Building.supersededBy(CommandArgumentDefinition<?> commandArgumentDefinition) Specifies a CommandArgument that can replace this one if it is not available.