Google Core Libraries for Java 1.6+

learn more… | top users | synonyms (1)

0
votes
3answers
55 views

Potential null pointer access

I encounter a strange situation that is currently not that clear to me: When having the potential null pointer access warning enabled in Eclipse, I get warnings like in the following (the warnings ...
0
votes
1answer
90 views

Java Guava: Remove and put back elements from Multimap while iterating

What I'm trying to achieve is the following: While iterating over both the keys and values of a Multimap<K,V>, I want to remove and put back elements from this list. Any approach I've tried ends ...
2
votes
1answer
79 views

Downloading part of guava-libraries

Current version (14.0.1) of guava-libraries is 2 MB. It is not huge, it is not small neither. Especially when I want to use it in an exemplary project for my students and only need "Strings" part of ...
1
vote
1answer
62 views

Case Insensitive filtering using Google Guava

Current I am using following piece of code to create a filter, in a map to match and give a filtered list of resultset. final Map filteredMap = Maps.filterKeys(mymap, ...
0
votes
1answer
38 views

Ivy used to retrieve guava, now it does not

Related question: Ivy cached a dependency file, but not copy to my lib My situation is nearly identical, except that this has been working for quite a while until recently. Ivy retrieves other jars: ...
0
votes
1answer
105 views

Guava cache memory leak

I am using guava library 14.0.1 to implement caching service (a web application containing a servlet to put and get values). The web application is deployed on a machine containing 1GB RAM (google ...
1
vote
1answer
26 views

Ivy cached a dependency file, but not copy to my lib

I got a strange problem. I added Guava to my ivy.xml as the following: <dependency org="com.google.guava" name="guava" rev="14.0.1" conf="test"/> When I run ant, I can see it's resolved: ...
0
votes
2answers
65 views

Applying function to all elements at once instead of for each single element?

I need something like FluentIterable.transformAndConcat, however the transform function shall be called only once for all elements in my FluentIterable (so all elements of the FluentIterable shall be ...
1
vote
0answers
25 views

guava and bonecp in webstart giving security exception

I have an APP that is run via java webstart. It is using the BoneCP library which is dependent on the Google guava library. When it starts to down load it fails on the guava jar file. Antiviruses ...
0
votes
1answer
67 views

NoSuchMethodError : google common ImmutableSet.copyOf(..)

I upgraded my Google app Engine app from 1.7. to 1.8. + Java 7 and i leveled up all API libraries to be up-to-date. I am getting strange exceptions during app inicialization in GAE container : ...
1
vote
2answers
80 views

Guava EventBus unit tests

I have a simple Guava EventBus with one simple event and one simple listener. My question is what is the test pattern to check if the listener method is invoked once the event is posted.
1
vote
1answer
61 views

Guava jar (Google core library) used for ObjectArray, prints a lot of messages on log4j

I am using Guava libraries for concatenation of objectarrays like this import com.google.common.collect.ObjectArrays ; .... plannedList = ObjectArrays.concat(plannedList, newPlannedList, ...
1
vote
1answer
94 views

Assigning values to Map (Hashmap or Multimap)

I have a map : HashMap<String, ArrayList<Integer>> hashmap = new HashMap<String, ArrayList<Integer>>(); After retrieving data from a remote database server, I am creating a ...
1
vote
1answer
81 views

Guava Caches / configurable eviction / buffer replacement strategies

Are other replacement strategies planned regarding the maximum size eviction? I would need an MRU algorithm, such that the system benefits from the cache. The system stores records in blocks on disk ...
3
votes
2answers
112 views

A Map<String, List<String>> implementation, exposing a view Map of “last values”

I'm looking at various google-collections (or also Apache commons collections) classes, and I'd fancy some help in finding the most appropriate Map implementation for my use case. I'm not interested ...
1
vote
2answers
103 views

Force to clear memory

I am running into some memory issues with my project, so I decided to stress test some portions to see some performance measurements. I am using Google's ConcurrentLinkedHashMap library as an LRU ...
1
vote
0answers
64 views

Guava ListenableFuture allAsList returns all content seen so far from get

I was wondering if there is any util for ListenableFuture that works like allAsList but if you call get(50, TimeUnit.Milliseconds) returns all that have completed.
-2
votes
1answer
97 views

HashMultiMap: different kinds of values, and example code? [closed]

I'm trying to create a HashMap mapping together three different values of two different types: a String key, and a String and integer pair of values. (I want to be able to sort the resulting ...
3
votes
2answers
91 views

Least value concurrent map

I require an implementation of a map, that supports concurrency, and only stores the least/most value added (depending on the comparator). Would the following code work? class ...
0
votes
2answers
103 views

How to apply function to each collection element in order to mutate it in Guava?

I'm using Guava 11 (because of java 5) for a year now but I don't seem to find a way of doing Groovy's each or Scala's foreach, that is to say, apply function to collection's elements that can mutate ...
0
votes
1answer
57 views

Java comparator by using priority for classes that extend a common parent class

I need to implement several comparators in Java. I have a lot of known classes, A1, A2, A3, ..., An, which all extends class A. What I want to to is a comparator class based on Guava Ordering, like ...
1
vote
1answer
119 views

scala 2.10 type mismatch using google guava's CacheBuilder

I am writing a generic cache for a few of my entities in scala 2.10.1. For now, I am using google Guava's CacheBuilder since there aren't many options in scala ecosystem. Code: trait CachedEntity[E ...
1
vote
1answer
104 views

Contravariantly converting Guava Predicates

I have a Predicate<Object> and need an equivalent Predicate<Animal>. Predicate<Animal> provideIsSentientPredicate() { // Won't compile -- cannot convert from ...
0
votes
3answers
112 views

Filter ArrayLists that just have intersected data

I have the following classes: public class School{ List<ClassRoom> classRooms; } public class ClassRoom{ List<Student> students; } public class Student{ String name; ...
0
votes
1answer
89 views

guava contiguous range by a rule

For example, is it possible to create a Range of even numbers in guava? Something like: Range.closed(0,10) //0,2,4,6,8,10 I understand that the line above will not produce the output needed, but ...
-1
votes
1answer
55 views

Filter ArrayList that has similar data

I have the following classes: public class School{ List<ClassRoom> classRooms; } public class ClassRoom{ List<Student> students; } public class Student{ String name; long typeId; } I ...
1
vote
4answers
133 views

Using Google Guava to format Strings

I am using Google guava to format Strings and write them to a text file using BufferedWriter import com.google.common.base.Strings; import java.io.*; public class Test { public static void ...
1
vote
2answers
105 views

Find the highest value in a HashSet/ArrayList by a specific object attribute

I have a List of Car objects. Each car object has a type indicating whether its a sedan, suv, coupe, van or truck) along with other attributes. Assume my application ranks these in order listed below ...
1
vote
4answers
73 views

How do I add to a set based on a specific predicate in Java?

I have a set in Java containing people: Set<Person> uniquePeople = new HashSet<Person>(); I also have a list of a ton of people (of whom some possess the same name, eg. there is more ...
0
votes
1answer
96 views

How to read large file from Amazon S3?

I have a program which will read a textfile from Amazon s3, but the file is around 400M. I have increased my Heap size but i'm still getting the Java Heap Size error. So, I'm not sure if my code is ...
1
vote
1answer
65 views

How to let missing entries expire more quickly in Guava

I have a Java service that translates a String key to a Long id, through a database lookup. I'm wrapping it in a Guava Cache to reduce database queries. The mapping from key to id doesn't change ...
0
votes
1answer
51 views

Using CacheBuilder and redis together

Guava CacheBuilder only uses a single JVM. I want to use the CacheBuilder interface to load data from redis and redis in turn loads the data from MySQL. How do I solve it? Is it even possible?
4
votes
2answers
124 views

Why isn't there guava Objects.equal(Object, Object) to primitive types?

Why isn't there an Objects.equal receiving as an argument each primitive type? I know you can box the value via #valueOf or let each primitive be autoboxed, but don't you lose performance doing ...
4
votes
4answers
141 views

Java Generics erasure in Multimaps

I have two Multimaps of Strings indexed by (i) Integers and (ii) Doubles and a routine to output lists of the Strings. public static void outputInteger(Multimap<Integer, String> map) { for ...
3
votes
0answers
95 views

Guava cache - How do I loadAll on any miss?

I have a use case where the method to load my cache's data is a bulk call, but I'm never going to use getAll to get data from the cache. Is there a way to have multiple concurrent gets all block on a ...
0
votes
2answers
79 views

Same class different version, dependencies, NoSuchMethod

I am working on a web project that has 2 different dependencies being pulled into war file of the same class (different versions, different package) One is : com.google.common.collect, and the other ...
2
votes
1answer
91 views

Right way to deal with Unicode BOM in a text file

I am reading a text file in my program which contains some Unicode BOM character \ufeff/65279 in places. This presents several issues in further parsing. Right now I am detecting and filtering these ...
0
votes
1answer
76 views

Concurrent set with weak references and identity hash

I wanted a concurrent set with weak references to elements. I thought of doing this using Guava's MapMaker: Set<Object> concurrentSet = Collections.newSetFromMap( new MapMaker<Object, ...
0
votes
0answers
117 views

Design patterns for converting objects with nested lists

I have a service where the flow is basically the following: Receive an input object. This is just a POJO object and I don't have much say in the design of it. Convert to a normalized object for my ...
1
vote
1answer
98 views

Is it feasible to use Guava Cache as a “helper” for my own persistent cache?

I'm looking to relieve the pressure on a "lookup service" that hits a database each time, by putting a caching layer between the service provider and the service client. I want this caching layer to ...
1
vote
2answers
134 views

ImmutableSet from Guava or Java enum

I read here a nice example about using ImmutableSet from Guava. The example is reported here for the sake of completeness: public static final ImmutableSet<String> COLOR_NAMES = ...
4
votes
2answers
135 views

Difference between 2 collections? (elements in collection1, but not in collection2)

In Java (maybe using Guava?), is there some method provided to get the difference of two Collections, e.g. a List and a Set without modifying one of these Collections (else there would be ...
3
votes
1answer
86 views

Cleaner way to check if a string is ISO country of ISO language in Java

Suppose to have a two-characters String, which should represent the ISO 639 country or language name. You know, Locale class has two functions getISOLanguages and getISOCountries that return an array ...
0
votes
2answers
70 views

Cache with automatically expiring items

Is there a Cache implementation available in Java, Guava, or another library that can do the following: Key, Value Cache with automatically expiring items. Modifying the value restarts the ...
2
votes
2answers
94 views

JAXB: how to unmarshall Java object composed from multiple tags or attribute values

I am converting from SAX parser to JAXB - can't figure out how to unmarshall multiple tag/attribute values into single (compassable) Java POJO. I have xml file like this: <item validFrom="1950" ...
0
votes
5answers
142 views

Effective way to build a list of tokens from multiple strings in Java

I'm looking for an efficient way to obtain a list of String tokens extracted from multiple Strings (e.g. with a whitespace separator). Example: String s1 = "My mom cook everyday"; String s2 = "I eat ...
0
votes
2answers
85 views

How to Make guava cache value permanent

Is it possible, using Google Guava's Cache, to keep my cached value in the cache permanently? Below is how I build my cache: cache = CacheBuilder.newBuilder() ...
0
votes
3answers
98 views

How to create s sublist of specific object variables?

How can I easily create sublist List<String> of all name properties using Guava? class Person { String name; } List<Person> persons; //how can I replace the following using guava ...
0
votes
1answer
111 views

maven checkstyle plugin and guava / google-collections dependency clash

In our multiple module maven (3) project we are utilising the maven checkstyle plugin. It looks like that since we've shifted the guava dependency to our parent pom, we can't execute successfully the ...
2
votes
2answers
139 views

Submit tasks with delay based on token

guys. I have a task I cannot wrap my head around since I am quite new to multithreading. I want to write a class which will maintaing the following semantics: interface TokenAwareTaskExecutor(){ ...

1 2 3 4 5 20