Missed this file in last commit.
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/c90ddc57 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/c90ddc57 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/c90ddc57 Branch: refs/heads/blur-384-random-port-cleanup Commit: c90ddc57e302e717b42bef8087daed7919e1512b Parents: 546d2de Author: Aaron McCurry <[email protected]> Authored: Wed Oct 1 20:38:38 2014 -0400 Committer: Aaron McCurry <[email protected]> Committed: Wed Oct 1 20:38:38 2014 -0400 ---------------------------------------------------------------------- .../java/org/apache/blur/command/Argument.java | 85 ++++++++++++++++++++ 1 file changed, 85 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/c90ddc57/blur-core/src/main/java/org/apache/blur/command/Argument.java ---------------------------------------------------------------------- diff --git a/blur-core/src/main/java/org/apache/blur/command/Argument.java b/blur-core/src/main/java/org/apache/blur/command/Argument.java new file mode 100644 index 0000000..5faf7aa --- /dev/null +++ b/blur-core/src/main/java/org/apache/blur/command/Argument.java @@ -0,0 +1,85 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.blur.command; + +public class Argument { + + private final String _description; + private final String _type; + private final String _name; + + public Argument(String name, String type, String description) { + this._description = description; + this._type = type; + this._name = name; + } + + public String getDescription() { + return _description; + } + + public String getType() { + return _type; + } + + public String getName() { + return _name; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((_description == null) ? 0 : _description.hashCode()); + result = prime * result + ((_name == null) ? 0 : _name.hashCode()); + result = prime * result + ((_type == null) ? 0 : _type.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + Argument other = (Argument) obj; + if (_description == null) { + if (other._description != null) + return false; + } else if (!_description.equals(other._description)) + return false; + if (_name == null) { + if (other._name != null) + return false; + } else if (!_name.equals(other._name)) + return false; + if (_type == null) { + if (other._type != null) + return false; + } else if (!_type.equals(other._type)) + return false; + return true; + } + + @Override + public String toString() { + return "Argument(name=" + _name + ", type=" + _type + ", description=" + _description + ")"; + } + +}
