Added the initial files from ariane jellyfish
[ariane.git] / ariane-old-core / src / main / java / com / assembla / ariane / jellyfish / proxy / comparators / Equality.java
blobaa6331abc0f64a28b75574cd80a96c085f458310
1 /*******************************************************************************
2 * Copyright 2012 Fat Cat
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 ******************************************************************************/
16 package com.assembla.ariane.jellyfish.proxy.comparators;
18 /**
19 * Interface used to specify an equality operator for an validator.
20 * @author Fat Cat
21 * @param <T> The equality value.
23 public interface Equality< T >
26 /**
27 * Checks if both arguments are equal.
28 * @param first The first argument to compare.
29 * @param second The second argument to compare.
30 * @return True, if they are.
32 boolean equals( T first, T second );
34 /**
35 * Checks if the given argument is a validator according to this equality
36 * principle.
37 * @param val The value to check for a valid validator.
38 * @return True, if the value is a valid validator.
40 boolean isValidator( T val );