Tagged Questions

14
votes
5answers
8k views

Why is compareTo on an Enum final in Java?

An Enum in Java implements the Comparable interface. It would have been nice to override Comparable's compareTo method, but here it's marked as final. The default natural order on Enum's compareTo ...
11
votes
8answers
10k views

Java Strings: compareTo() vs. equals()

When testing for equality of strings in Java I have always used equals() because to me this seems to be the most natural method for it. After all, its name already says what it is intended to do. ...
6
votes
2answers
84 views

Does the specific signed integer matter when implementing compareTo in a Comparable <Type> class?

When implementing compareTo(), does the degree of "difference" need to be taken into account? For instance, if I have 3 objects, C1, C2, and C3, such that C1 < C2 < C3. Should ...
5
votes
5answers
6k views

How to simplify a null-safe compareTo() implementation?

I'm implementing compareTo() method for a simple class such as this (to be able to use Collections.sort() and other goodies offered by the Java platform): public class Metadata implements ...
4
votes
3answers
139 views

compareTo and equals in PriorityQueues

i'm a little confused with all the "If the ordering imposed by c on S is inconsistent with equals, the sorted set (or sorted map) will behave strangely." warnings in the Javadoc. I'm not even sure ...
4
votes
5answers
230 views

What should int compareTo() return when the parameter string is null?

It is said that when input parameter is null, compareTo() should throw a NullPointerException. However, I am implementing a class which needs to compare fields with the type of String. These fields ...
4
votes
3answers
83 views

Does compareTo have some sort of pre-launching delay?

I just found this statement: "One can greatly increase the performance of compareTo by comparing first on items which are most likely to differ". Is it true? And if it is, why?
3
votes
6answers
66 views

Java - compareTo and operators

If I have a class Person that implements Comparable (compares personA.height to personB.height, for example), is it possible to use personA < personB as a substitute for ...
3
votes
3answers
69 views

how do I interpose on Long/String compareTo()?

I have a class implementing a data structure storing Comparable objects. Some instances hold Longs and other Strings. I want to count the number of comparisons that occur, without changing the data ...
3
votes
2answers
384 views

BigDecimal equals() versus compareTo()

Consider the simple test class: import java.math.BigDecimal; /** * @author The Elite Gentleman * */ public class Main { /** * @param args */ public static void main(String[] ...
3
votes
2answers
177 views

Which usage of compareTo method is more understandable?

I want to sort objects based on Boolean values and I want to sort true values before false values. Which of these implementations of compareTo is more readable? Using -1 to change default behavior ...
3
votes
1answer
821 views

Java Comparable Interface compareTo method

I don't see anything that I am doing wrong, but NetBeans gives me the following error: incomparable types required: boolean found: java.lang.Object public int compareTo(Object obj) { if( obj ...
3
votes
8answers
1k views

What is a practical application of Java's compareTo method?

In the Java textbook I'm learning from, it says that this uses "lexicographic ordering" to return an integer. I understand how it works, but what is a specific way this is used in programming?
2
votes
2answers
84 views

Overflowing the return result for compareTo?

Is there a potential for overflow if I were to write the following: public class SomeObj implements Comparable<SomeObj> { private final float data; public SomeObj(float data) { ...
2
votes
7answers
62 views

compare more field of a object in compareTo

I'd compare more than one only field of a object using the compareTo method. Is it possible? for istance: public int compareTo(Object o) { return field.compareTo(o.field); } I create this ...
2
votes
3answers
112 views

using compareTo in Binary Search Tree program

I've been working on this program for a few days now and I've implemented a few of the primary methods in my BinarySearchTree class such as insert and delete. Insert seemed to be working fine, but ...
2
votes
3answers
134 views

Java Comparable, mutliple/different implenetations of compareTo() method

I have this class: public class Sample implements Comparable<Sample> { public String a; public String b; public String c; public int compareTo (Sample sampleToCompare) { int compResult = ...
2
votes
3answers
160 views

Comparing an Array of Comparables in Java

I want to compare an array of comparables. The simplest way seems the following (details not shown): public class ArrayComparable implements Comparable<ArrayComparable>{ ...
2
votes
4answers
702 views

compareTo() and Collections.sort() Solution For Multiple Column Ordering (Ascending) question

Am somewhat confused with Java's compareTo() and Collections.sort() behavior. I am supposed to sort a column in ascending order using compareTo() & Collections.sort(). My criteria is (if the ...
2
votes
4answers
512 views

java compare to from double to int tostring method

How do i go about using compareto for a double and i want to turn it into an int? An example would be nice. I have been searching the java api. also is it possible to use if and else statements with ...
2
votes
2answers
249 views

Using compareTo and PriorityQueues in Java

I'm trying to implement a heap using a PriorityQueue as follows: PriorityQueue<Node> heap = new PriorityQueue<Node>(); Set<String> allWords = codebook.getAllWords(); for(String word ...
1
vote
2answers
38 views

Difference between Collator (locale-sensitive) and compareTo (lexicographically) for comparing String values

I've been reading about using Collator and the compareTo method in String for comparing Strings. I'm unsure what the real difference is between the two from reading the API. When is one to prefer over ...
1
vote
6answers
102 views

How to use compareTo within a Generic array in java?

I am trying to figure out how to compare two items within a T[] array, here is what I have: public static <T extends Comparable< ? super T>> T getLargest(T [] a, int low, ...
1
vote
1answer
68 views

How do I calculate the number of Mondays since the start of this year?

I'm trying to write a simple procedure that will add to a List every second Monday (every pay period day) since the beginning of the year, what is happening is kind of strange but I've never worked ...
1
vote
1answer
48 views

Undocumented String.compareTo(null) NPE?

The following little test throws an NPE: public class Test { public static void main(String[] args) { String a = "a"; String b = null; ...
1
vote
3answers
57 views

private instance variable accessible with “public” scope inside compareTo

Strangely, instance variable brand is private scope, yet accessible the "public" way inside of method compareTo. public class Car implements Comparable<Car> { private String brand; ...
1
vote
3answers
175 views

Creating compareTo method in java with one parameter

I have a question about making a compareTo function in Java. In Java, we have the String.compareTo(String) method. However, I need to make a compareTo function with only only parameter, like: ...
1
vote
3answers
169 views

More efficient compareTo algorithm?

I'm using Collections.sort to sort a ArrayList of objects, and I want to see if there is a more efficient compareTo method for what I'm trying to do. Here's the method: @Override public int ...
1
vote
5answers
636 views

How to use the Comparable CompareTo on Strings in Java

I can use it to sort by emp id but I'm not sure if it is possible to compare strings. I get an error the operator is undefined for strings. public int compareTo(Emp i) { if ...
1
vote
2answers
157 views

Java's compareTo() function equivalent in Perl?

What's the the Perl function that achieves the same thing as compareTo() in Java? I know about eq and ne but I want to compare to see if one string is greater than another.
1
vote
5answers
807 views

FindBugs - how to solve EQ_COMPARETO_USE_OBJECT_EQUALS

I am clueless here... 1: private static class ForeignKeyConstraint implements Comparable<ForeignKeyConstraint> { 2: String tableName; 3: String fkFieldName; 4: 5: public int ...
1
vote
7answers
768 views

In Java what should I use for a PriorityQueue that returns the greatest element first?

Java's PriorityQueue places the least element at the head of the list, however I need it to place the greatest element at the head. What what's the neatest way to get a priority queue that behaves ...
0
votes
3answers
41 views

Unexpected behavior with PriorityQueue remove: Why isn't compareTo used?

I am trying to use the priority queue, but the remove() is not working: My code: PriorityQueue<OwnClass> pq=new PriorityQueue<OwnClass>(); OwnClass a=new OwnClass(1); OwnClass b=new ...
0
votes
3answers
57 views

Java: What are the compareTo interface semantics?

I don't understand this question. Is it asking the for the method's signature, which is: public int compareTo(Object o) or is it: compareTo() returns negative numbers, 0, and positive numbers ...
0
votes
0answers
56 views

Is it advised to use str.CompareTo() or str.equals() in java? [closed]

Possible Duplicate: Java Strings: compareTo() vs. equals() In java, I am reading an excel file. The value in a particular cell is fetched into a string, like strCellValue = ...
0
votes
4answers
77 views

comparison of String and Integer using compareTo and instanceOf

I have a code snippet which I am not able to understand what exactly it does.. This code is in JavaBean.. private Object myNumb; //then getter and setter for this public int compareTo(myRptObj o){ ...
0
votes
3answers
99 views

Is there a library to compare primitive type values?

I am implementing Comparable interface on a trivial class that wraps a single int member. I can implement it this way: @Override public int compareTo ( final MyType o ) { return ...
0
votes
2answers
124 views

Using Collections.sort() to sort a list of MP3s

I'm using Collections.sort() to sort a list of MP3s in order of runtime, and if runtime is equal, then sort alphabetically by title, and if title is equal then sort by composer. I put the input into ...
0
votes
3answers
119 views

compareTo() Java Quick Question

I have this method in my code public boolean has(AnyType x){ for(int i=0; i<items.length; i++) if(items[i] == x) return true; return false; } ...
0
votes
3answers
198 views

Best Practice in handling comparator

How to handle null objects, which comes in compareTo method. This always causes nullpointer exception. What a is best way to solve this issue.
0
votes
2answers
944 views

Java: Using Array.sort() error - java.lang.ClassCastException: Student cannot be cast to java.lang.Comparable

I am trying to write a program for my course that sorts an array of objects. Does anyone know why I am getting this error? Snippets of code included below! Student object /* Class for storing ...
0
votes
4answers
199 views

Should I be concerned about this compareTo/equals/hashCode implementation?

I'm in the middle of QA'ing a bunch of code and have found several instances where the developer has a DTO which implements Comparable. This DTO has 7 or 8 fields in it. The compareTo method has ...
0
votes
4answers
372 views

Java sorting parallel arrays, help needed (NullPointerException Error)

Ok I am trying to finish this program for my into to java class and I am having trouble with this one part. Everything else is working except this. I have 3 arrays, 1 string, 2 type int, all parallel. ...
0
votes
1answer
488 views

comparing two TreeNode (or DefaultMutableTreeNode) objects in Java Comparator

My goal is very simple today, I am trying to work out the proper way to implement compareTo (or the Comparable) interface for my class which extends DefaultMutableTreeNode. The problem is this: Say I ...
0
votes
2answers
85 views

how to customize compareTo method to consider both direction flow

if I need to customize my code with this logic if this.srcAddr=other.srcAddr or this.src.Addr = other.sdstAddr this.srcPort=other.srcPort this.srcPort=other.dstPort because I am going to consider ...
0
votes
3answers
746 views

How do I sort an array of Person Objects by using compareto()?

Here is my code: > import java.util.Scanner; import java.util.Arrays; /** This class tests the Person class. */ public class PersonDemo { public static void main(String[] args) ...
0
votes
1answer
283 views

How to CompareTo two Object without known about their real type

I have to implement a one linked list but it should put object in appropriate position. Everything was OK when I use it in conjunction with specific class, but when I tried make it universal and ...
0
votes
2answers
119 views

comparing a Node and an Object with a BST data structure

I'm getting a "java.lang.string cannot be cast to node" exception. I thought of converting the localRoot to a string using a provided toString method then comparing them, nut this leaves no concept of ...
0
votes
6answers
4k views

Java compareto for String and Integer arguments

I am building a bubble sort and I want it to be able to accept both Integer and String parameters. I cast all input as Strings and use the compareto method to compare the integers casted as strings ...