http://commons.apache.org/proper/commons-lang/: Apache Commons Lang, a package of Java utility classes for the
classes that are in java.lang's hierarchy, or are considered to be so
standard as to justify existence in java.lang.
(The Apache Software Foundation)
- C. Scott Ananian
- Chris Audley
- Stephane Bailliez
- Michael Becke
- Benjamin Bentmann
- Ola Berg
- Nathan Beyer
- Stefan Bodewig
- Janek Bogucki
- Mike Bowler
- Sean Brown
- Alexander Day Chaffee
- Al Chou
- Greg Coladonato
- Maarten Coene
- Justin Couch
- Michael Davey
- Norm Deane
- Morgan Delagrange
- Ringo De Smet
- Russel Dittmar
- Steve Downey
- Matthias Eichel
- Christopher Elkins
- Chris Feldhacker
- Roland Foerther
- Pete Gieser
- Jason Gritman
- Matthew Hawthorne
- Michael Heuer
- Chas Honton
- Chris Hyzer
- Paul Jack
- Marc Johnson
- Shaun Kalley
- Tetsuya Kaneuchi
- Nissim Karpenstein
- Ed Korthof
- Holger Krauth
- Rafal Krupinski
- Rafal Krzewski
- David Leppik
- Eli Lindsey
- Sven Ludwig
- Craig R. McClanahan
- Rand McNeely
- Hendrik Maryns
- Dave Meikle
- Nikolay Metchev
- Kasper Nielsen
- Tim O'Brien
- Brian S O'Neill
- Andrew C. Oliver
- Alban Peignier
- Moritz Petersen
- Dmitri Plotnikov
- Neeme Praks
- Eric Pugh
- Stephen Putman
- Travis Reeder
- Antony Riley
- Valentin Rocher
- Scott Sanders
- James Sawle
- Ralph Schaer
- Henning P. Schmiedehausen
- Sean Schofield
- Robert Scholte
- Reuben Sivan
- Ville Skytta
- David M. Sledge
- Michael A. Smith
- Jan Sorensen
- Glen Stampoultzis
- Scott Stanchfield
- Jon S. Stevens
- Sean C. Sullivan
- Ashwin Suresh
- Helge Tesgaard
- Arun Mammen Thomas
- Masato Tezuka
- Daniel Trebbien
- Jeff Varszegi
- Chris Webb
- Mario Winterer
- Stepan Koltsov
- Holger Hoffstatte
- Derek C. Ashmore
- Sebastien Riou
- Allon Mureinik
- Adam Hooper
- Chris Karcher
- Michael Osipov
- Thiago Andrade
- Jonathan Baker
- Mikhail Mazursky
- Fabian Lange
- Michał Kordas
- Felipe Adorno
- Adrian Ber
- Mark Dacek
- Daniel Rall (CollabNet, Inc.)
- Stephen Colebourne (SITA ATS Ltd)
- Henri Yandell ()
- Steven Caswell ()
- Robert Burrell Donkin ()
- Gary D. Gregory
- Fredrik Westermarck ()
- James Carman (Carman Consulting, Inc.)
- Niall Pemberton
- Matt Benson
- Joerg Schaible
- Oliver Heger
- Paul Benedict
- Benedikt Ritter
- Duncan Jones
- Loic Guibert
- Rob Tompkins
/*
* 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.commons.lang3.builder;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
Use this annotation to exclude a field from being used by
the various reflectionEquals
methods defined on EqualsBuilder
. Since: 3.5
/**
* Use this annotation to exclude a field from being used by
* the various <code>reflectionEquals</code> methods defined on
* {@link EqualsBuilder}.
*
* @since 3.5
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface EqualsExclude {
}