QuotablePerson.java revision 553:9d9f26857129
1/*
2 * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24package pkg1;
25
26/**
27 * Some people we love to quote.
28 */
29public enum QuotablePerson {
30
31    /** "Beware of all enterprises that require new clothes." */
32    Thoreau,
33
34    /**
35     * "A point of view can be a dangerous luxury when substituted for
36     * insight and understanding."
37     */
38    McLuhan,
39
40    /**
41     * "If they can keep you asking the wrong questions, they don't have to
42     * worry about the answers."
43     */
44    Pynchon,
45
46    /**
47     * "For every problem, there is a solution that is simple, elegant,
48     * and wrong."
49     */
50    Mencken,
51
52    /**
53     * "Formerly unsolvable equations are dealt with by threats of reprisals."
54     */
55    Allen,
56
57    /** "It is not enough to succeed.  Others must fail." */
58    Vidal,
59
60    /** "Entia non sunt multiplicanda praeter necessitatem." */
61    Occam,
62
63    /**
64     * "Love is a snowmobile racing across the tundra and then suddenly it
65     * flips over, pinning you underneath.  At night, the ice weasels come."
66     */
67    Groening,
68
69    /** "Sed Quis custodiet ipsos custodes?" */
70    Juvenal,
71
72    /**
73     * "The list could surely go on, and there is nothing more wonderful
74     * than a list, instrument of wondrous hypotyposis."
75     */
76    Eco
77}
78